summaryrefslogtreecommitdiff
path: root/ext/xml/config.m4
blob: eb1e723273f1ba8bdb29825bebb9299cd86fa893 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# $Source$
# $Id$

dnl Fallback for --with-xml[=DIR]
AC_ARG_WITH(xml,[],enable_xml=$withval)

AC_C_BIGENDIAN

if test "$ac_cv_c_bigendian" = "yes"; then
  order=21
else
  order=12
fi

AC_MSG_CHECKING(for XML support)
AC_ARG_ENABLE(xml,
[  --disable-xml           Disable XML support using bundled expat lib],[
  PHP_XML=$enableval
],[
  PHP_XML=yes
])
AC_MSG_RESULT($PHP_XML)

if test "$PHP_XML" != "no"; then
  AC_DEFINE(HAVE_LIBEXPAT, 1, [ ])
  CPPFLAGS="$CPPFLAGS -DXML_BYTE_ORDER=$order"
  if test "$PHP_XML" = "shared"; then
    shared=yes
  else
    shared=
  fi
  PHP_EXTENSION(xml, $shared)
  AC_ADD_INCLUDE(${ext_src_base}expat/xmltok)
  AC_ADD_INCLUDE(${ext_src_base}expat/xmlparse)
  PHP_FAST_OUTPUT(${ext_base}expat/Makefile ${ext_base}expat/xmlparse/Makefile ${ext_base}expat/xmltok/Makefile)
fi