summaryrefslogtreecommitdiff
path: root/ext/xml/config.m4
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2002-11-17 18:37:48 +0000
committerIlia Alshanetsky <iliaa@php.net>2002-11-17 18:37:48 +0000
commitcea24195290895b461ffc9fa3e77a2048cc0a4f1 (patch)
treef7437067017611b3e77e55a8265f2301bbd80f27 /ext/xml/config.m4
parent29695934ed65b7c363b7a198c0383b89367f0ee6 (diff)
downloadphp-git-cea24195290895b461ffc9fa3e77a2048cc0a4f1.tar.gz
Upgraded the bundled expat library to 1.95.5 (latest stable, atm).
Fixed bug #20442.
Diffstat (limited to 'ext/xml/config.m4')
-rw-r--r--ext/xml/config.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/xml/config.m4 b/ext/xml/config.m4
index 4660302b10..d579451b22 100644
--- a/ext/xml/config.m4
+++ b/ext/xml/config.m4
@@ -5,9 +5,9 @@ dnl
AC_C_BIGENDIAN
if test "$ac_cv_c_bigendian" = "yes"; then
- order=21
+ order=4321
else
- order=12
+ order=1234
fi
PHP_ARG_ENABLE(xml,whether to enable XML support,
@@ -21,7 +21,7 @@ if test "$PHP_XML" = "yes"; then
if test "$PHP_EXPAT_DIR" = "no"; then
AC_DEFINE(HAVE_LIBEXPAT_BUNDLED, 1, [ ])
- PHP_NEW_EXTENSION(xml, xml.c expat/xmlparse.c expat/xmlrole.c expat/xmltok.c, $ext_shared,,-DXML_BYTE_ORDER=$order)
+ PHP_NEW_EXTENSION(xml, xml.c expat/xmlparse.c expat/xmlrole.c expat/xmltok.c, $ext_shared,,-DBYTEORDER=$order)
PHP_ADD_INCLUDE($ext_srcdir/expat)
PHP_ADD_BUILD_DIR($ext_builddir/expat)
else