php-src/ext/wddx/config.m4
Sascha Schumann 21eee58f6f As the WDDX extension can now be built as shared extension
without functional loss with regard to the session serializer, it
is safe to default to disable.  We enable XML automatically only,
if the user is building WDDX as a static extension.
2001-05-07 08:22:34 +00:00

15 lines
358 B
Plaintext

dnl $Id$
dnl config.m4 for extension wddx
PHP_ARG_ENABLE(wddx,for WDDX support,
[ --enable-wddx Enable WDDX support])
if test "$PHP_WDDX" != "no"; then
if test "$ext_shared" != "yes" && test "$enable_xml" = "no"; then
AC_MSG_WARN(Activating XML)
enable_xml=yes
fi
AC_DEFINE(HAVE_WDDX, 1, [ ])
PHP_EXTENSION(wddx, $ext_shared)
fi