2001-12-01 03:00:13 +08:00
|
|
|
dnl
|
|
|
|
dnl $Id$
|
|
|
|
dnl
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2002-05-05 00:48:01 +08:00
|
|
|
PHP_ARG_ENABLE(xml,whether to enable XML support,
|
|
|
|
[ --disable-xml Disable XML support using bundled expat lib], yes)
|
|
|
|
|
2001-06-03 21:59:21 +08:00
|
|
|
if test "$PHP_XML" = "yes"; then
|
2003-05-07 03:38:49 +08:00
|
|
|
AC_DEFINE(HAVE_XML, 1, [ ])
|
2001-01-05 14:36:51 +08:00
|
|
|
|
2003-05-07 03:38:49 +08:00
|
|
|
if test "$PHP_BUNDLE_EXPAT" = "no" && test "$PHP_BUNDLE_LIBXML" = "no"; then
|
|
|
|
AC_MSG_ERROR(xml support is enabled, however both xml libraries have been disabled.)
|
|
|
|
fi
|
2003-05-02 12:02:27 +08:00
|
|
|
|
2003-05-07 03:38:49 +08:00
|
|
|
PHP_NEW_EXTENSION(xml, compat.c xml.c, $ext_shared)
|
2001-06-03 21:59:21 +08:00
|
|
|
fi
|