From: Pierre Joye Date: Fri, 7 Jan 2011 15:51:36 +0000 (+0000) Subject: - define the php*.lib/dll names X-Git-Tag: php-5.3.6RC1~144 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=55077a81f5f00d6692dd402fcc578f9f2ae1e296;p=php - define the php*.lib/dll names --- diff --git a/win32/build/confutils.js b/win32/build/confutils.js index 55dbfc2a66..4cf61beb80 100644 --- a/win32/build/confutils.js +++ b/win32/build/confutils.js @@ -1702,16 +1702,10 @@ function generate_phpize() /* Generate flags file */ /* spit out variable definitions */ CJ = FSO.CreateTextFile(dest + "/config.phpize.js"); -/* - function escape(in) { - val = t.replace(new RegExp('("\\\\)', "g"), '\\$1'); - } -*/ - //if (typeof t == "string") { - - CJ.WriteLine("var PHP_ZTS =" + '"' + PHP_ZTS + '"'); - CJ.WriteLine("var PHP_LIB =" + '"' + get_define('PHPLIB') + '"'); + CJ.WriteLine("var PHP_ZTS =" + '"' + PHP_ZTS + '"'); + CJ.WriteLine("var PHP_DLL_LIB =" + '"' + get_define('PHPLIB') + '"'); + CJ.WriteLine("var PHP_DLL =" + '"' + get_define('PHPDLL') + '"'); CJ.WriteBlankLines(1); CJ.Close(); }