1
0
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:
Pierre Joye
2011-01-07 15:51:36 +00:00
parent 1351c2e2c6
commit cc6bb66dcd
2 changed files with 4 additions and 10 deletions

View File

@@ -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 */

View File

@@ -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();
}