wez             Thu Apr 15 12:09:36 2004 EDT

  Modified files:              
    /php-src/win32/build        confutils.js 
  Log:
  Fix bug that prevented --without-gd from working
  
  
http://cvs.php.net/diff.php/php-src/win32/build/confutils.js?r1=1.38&r2=1.39&ty=u
Index: php-src/win32/build/confutils.js
diff -u php-src/win32/build/confutils.js:1.38 php-src/win32/build/confutils.js:1.39
--- php-src/win32/build/confutils.js:1.38       Thu Feb 12 07:30:41 2004
+++ php-src/win32/build/confutils.js    Thu Apr 15 12:09:36 2004
@@ -17,7 +17,7 @@
   +----------------------------------------------------------------------+
 */
 
-// $Id: confutils.js,v 1.38 2004/02/12 12:30:41 wez Exp $
+// $Id: confutils.js,v 1.39 2004/04/15 16:09:36 wez Exp $
 
 var STDOUT = WScript.StdOut;
 var STDERR = WScript.StdErr;
@@ -139,7 +139,7 @@
 {
        var opptype = type == "enable" ? "disable" : "without";
 
-       if (defval == "yes") {
+       if (defval == "yes" || defval == "yes,shared") {
                this.arg = "--" + opptype + "-" + optname;
                this.imparg = "--" + type + "-" + optname;
        } else {

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to