]> granicus.if.org Git - php/commitdiff
Fix bug that prevented --without-gd from working
authorWez Furlong <wez@php.net>
Thu, 15 Apr 2004 16:09:36 +0000 (16:09 +0000)
committerWez Furlong <wez@php.net>
Thu, 15 Apr 2004 16:09:36 +0000 (16:09 +0000)
win32/build/confutils.js

index 7290996bda2da2c4392acfa9d62c148f43176ed8..f68ded077b804244211cd675057cda076e048c28 100644 (file)
@@ -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 @@ function ConfigureArg(type, optname, helptext, defval)
 {
        var opptype = type == "enable" ? "disable" : "without";
 
-       if (defval == "yes") {
+       if (defval == "yes" || defval == "yes,shared") {
                this.arg = "--" + opptype + "-" + optname;
                this.imparg = "--" + type + "-" + optname;
        } else {