summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2011-01-07 15:51:36 +0000
committerPierre Joye <pajoye@php.net>2011-01-07 15:51:36 +0000
commit55077a81f5f00d6692dd402fcc578f9f2ae1e296 (patch)
tree33a17b619bf8eb7308a251f732ee194263c597a2 /win32
parenteaaef0d870f50563fab837fffadcf47a02079c54 (diff)
downloadphp-git-55077a81f5f00d6692dd402fcc578f9f2ae1e296.tar.gz
- define the php*.lib/dll names
Diffstat (limited to 'win32')
-rw-r--r--win32/build/confutils.js12
1 files 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();
}