sniper Wed Dec 21 14:22:03 2005 EDT Modified files: /php-src/ext/wddx config.m4 Log: - Fix possible compile failure if configuring with --disable-all http://cvs.php.net/viewcvs.cgi/php-src/ext/wddx/config.m4?r1=1.11&r2=1.12&diff_format=u Index: php-src/ext/wddx/config.m4 diff -u php-src/ext/wddx/config.m4:1.11 php-src/ext/wddx/config.m4:1.12 --- php-src/ext/wddx/config.m4:1.11 Sun May 29 23:16:45 2005 +++ php-src/ext/wddx/config.m4 Wed Dec 21 14:22:02 2005 @@ -1,12 +1,12 @@ dnl -dnl $Id: config.m4,v 1.11 2005/05/29 23:16:45 sniper Exp $ +dnl $Id: config.m4,v 1.12 2005/12/21 14:22:02 sniper Exp $ dnl 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
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php