Skip to content

Commit f52831b

Browse files
author
Andrei Zmievski
committed
Enabling WDDX by default.
1 parent 787e4cc commit f52831b

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

ext/wddx/config.m4

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
dnl $Id$
22
dnl config.m4 for extension wddx
33

4-
PHP_ARG_ENABLE(wddx,whether to enable WDDX support,
5-
[ --enable-wddx Enable WDDX support])
4+
PHP_ARG_ENABLE(wddx,for WDDX support,
5+
[ --disable-wddx Disable WDDX support], yes)
66

7-
if test "$PHP_WDDX" = "yes"; then
7+
if test "$PHP_WDDX" != "no"; then
88
if test "$enable_xml" = "no"; then
99
AC_MSG_WARN(Activating XML)
1010
enable_xml=yes
1111
fi
1212
AC_DEFINE(HAVE_WDDX, 1, [ ])
13-
PHP_EXTENSION(wddx)
13+
PHP_EXTENSION(wddx, $ext_shared)
1414
fi

ext/wddx/setup.stub

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)