summaryrefslogtreecommitdiff
path: root/ext/wddx
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-12-21 14:22:26 +0000
committerfoobar <sniper@php.net>2005-12-21 14:22:26 +0000
commitd09ad216a01264b6c63427c76077c0b4f286365b (patch)
tree71bd1cdb6a35a6e2067a27fcaef00b5bbfd1bb18 /ext/wddx
parent604990d6a56b47e0c442118746cc312268ca4a9e (diff)
downloadphp-git-d09ad216a01264b6c63427c76077c0b4f286365b.tar.gz
MFH: prevent compile failure with --disable-all
Diffstat (limited to 'ext/wddx')
-rw-r--r--ext/wddx/config.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/wddx/config.m4 b/ext/wddx/config.m4
index 25f366e958..86b19e62ef 100644
--- a/ext/wddx/config.m4
+++ b/ext/wddx/config.m4
@@ -6,7 +6,7 @@ PHP_ARG_ENABLE(wddx,whether to enable WDDX support,
[ --enable-wddx Enable WDDX support])
if test "$PHP_WDDX" != "no"; then
- if test "$ext_shared" != "yes" && test "$enable_xml" = "no"; then
+ if test "$ext_shared" != "yes" && (test "$enable_xml" = "no" || test "${enable_xml+set}" != "set"); then
AC_MSG_WARN(Activating XML)
enable_xml=yes
fi