diff options
author | Pierre Joye <pajoye@php.net> | 2011-01-07 15:51:36 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2011-01-07 15:51:36 +0000 |
commit | 55077a81f5f00d6692dd402fcc578f9f2ae1e296 (patch) | |
tree | 33a17b619bf8eb7308a251f732ee194263c597a2 /win32 | |
parent | eaaef0d870f50563fab837fffadcf47a02079c54 (diff) | |
download | php-git-55077a81f5f00d6692dd402fcc578f9f2ae1e296.tar.gz |
- define the php*.lib/dll names
Diffstat (limited to 'win32')
-rw-r--r-- | win32/build/confutils.js | 12 |
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();
}
|