From: Sascha Schumann Date: Sat, 12 Feb 2000 15:08:32 +0000 (+0000) Subject: Tell expat the byte order X-Git-Tag: BEFORE_SAPI_POST_PATCH_17_FEB_2000~70 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e7a4d5f18d109063b9779a6587fb32b77545adc0;p=php Tell expat the byte order --- diff --git a/ext/xml/config.m4 b/ext/xml/config.m4 index e3bed63ea7..30396b90b5 100644 --- a/ext/xml/config.m4 +++ b/ext/xml/config.m4 @@ -5,7 +5,13 @@ 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, [ --enable-xml Include XML support using bundled expat lib],[ @@ -17,6 +23,7 @@ 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