pajoye Fri Jul 25 12:40:45 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/win32/build confutils.js Log: - MFH: fix EXT_FOO_SHARED usage as dep mgt broke it (one more hack but we can clean them after alpha) http://cvs.php.net/viewvc.cgi/php-src/win32/build/confutils.js?r1=1.60.2.1.2.8.2.28&r2=1.60.2.1.2.8.2.29&diff_format=u Index: php-src/win32/build/confutils.js diff -u php-src/win32/build/confutils.js:1.60.2.1.2.8.2.28 php-src/win32/build/confutils.js:1.60.2.1.2.8.2.29 --- php-src/win32/build/confutils.js:1.60.2.1.2.8.2.28 Sun Jul 20 02:20:31 2008 +++ php-src/win32/build/confutils.js Fri Jul 25 12:40:45 2008 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -// $Id: confutils.js,v 1.60.2.1.2.8.2.28 2008/07/20 02:20:31 sfox Exp $ +// $Id: confutils.js,v 1.60.2.1.2.8.2.29 2008/07/25 12:40:45 pajoye Exp $ var STDOUT = WScript.StdOut; var STDERR = WScript.StdErr; @@ -1145,10 +1145,13 @@ var objs = null; var EXT = extname.toUpperCase(); var extname_for_printing; - + if (shared == null) { eval("shared = PHP_" + EXT + "_SHARED;"); + } else { + eval("PHP_" + EXT + "_SHARED = shared;"); } + if (cflags == null) { cflags = ""; }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php