From 55077a81f5f00d6692dd402fcc578f9f2ae1e296 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Fri, 7 Jan 2011 15:51:36 +0000 Subject: [PATCH] - define the php*.lib/dll names --- win32/build/confutils.js | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) 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(); } -- 2.40.0