sniper          Wed Dec 21 14:22:26 2005 EDT

  Modified files:              (Branch: PHP_5_1)
    /php-src/ext/wddx   config.m4 
  Log:
  MFH: prevent compile failure with --disable-all
  
http://cvs.php.net/viewcvs.cgi/php-src/ext/wddx/config.m4?r1=1.11&r2=1.11.2.1&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.11.2.1
--- 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:26 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.11.2.1 2005/12/21 14:22:26 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

Reply via email to