diff --git a/win32/build/config.w32.h.in b/win32/build/config.w32.h.in index 27f1140ab1e..9d885667f0a 100644 --- a/win32/build/config.w32.h.in +++ b/win32/build/config.w32.h.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 */ diff --git a/win32/build/confutils.js b/win32/build/confutils.js index 55dbfc2a665..4cf61beb806 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(); }