mirror of
https://github.com/php/php-src.git
synced 2026-04-04 22:52:40 +02:00
- define the php*.lib/dll names
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
/* Define the minimum supported version */
|
||||
#undef _WIN32_WINNT
|
||||
#undef NTDDI_VERSION
|
||||
#define _WIN32_WINNT 0x500
|
||||
#define _WIN32_WINNT 0x502
|
||||
#define NTDDI_VERSION _WIN32_WIN2K
|
||||
|
||||
/* Default PHP / PEAR directories */
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user