diff options
author | foobar <sniper@php.net> | 2005-12-21 14:22:26 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-12-21 14:22:26 +0000 |
commit | d09ad216a01264b6c63427c76077c0b4f286365b (patch) | |
tree | 71bd1cdb6a35a6e2067a27fcaef00b5bbfd1bb18 /ext/wddx | |
parent | 604990d6a56b47e0c442118746cc312268ca4a9e (diff) | |
download | php-git-d09ad216a01264b6c63427c76077c0b4f286365b.tar.gz |
MFH: prevent compile failure with --disable-all
Diffstat (limited to 'ext/wddx')
-rw-r--r-- | ext/wddx/config.m4 | 2 |
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 |