We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 787e4cc commit f52831bCopy full SHA for f52831b
ext/wddx/config.m4
@@ -1,14 +1,14 @@
1
dnl $Id$
2
dnl config.m4 for extension wddx
3
4
-PHP_ARG_ENABLE(wddx,whether to enable WDDX support,
5
-[ --enable-wddx Enable WDDX support])
+PHP_ARG_ENABLE(wddx,for WDDX support,
+[ --disable-wddx Disable WDDX support], yes)
6
7
-if test "$PHP_WDDX" = "yes"; then
+if test "$PHP_WDDX" != "no"; then
8
if test "$enable_xml" = "no"; then
9
AC_MSG_WARN(Activating XML)
10
enable_xml=yes
11
fi
12
AC_DEFINE(HAVE_WDDX, 1, [ ])
13
- PHP_EXTENSION(wddx)
+ PHP_EXTENSION(wddx, $ext_shared)
14
ext/wddx/setup.stub
0 commit comments