php-src/ext/wddx/config.m4
Sascha Schumann 1f822b98ce Welcome PHP_ARG_ENABLE and PHP_ARG_WITH. They are there to replace the common
AC_MSG_CHECKING, AC_ARG_[ENABLE,WITH], AC_MSG_RESULT trio.
2000-03-27 23:33:38 +00:00

15 lines
328 B
Plaintext

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