summaryrefslogtreecommitdiff
path: root/win32/build
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
commitcc6bb66dcda406e06a906c4acb12bd85825bc06a (patch)
tree7cccc57425ff60dd63e07e808b2e536d4b677851 /win32/build
parent1351c2e2c6c17243c6ae7f0c22b3c67407b6e28c (diff)
downloadphp-git-cc6bb66dcda406e06a906c4acb12bd85825bc06a.tar.gz
- define the php*.lib/dll names
Diffstat (limited to 'win32/build')
-rw-r--r--win32/build/config.w32.h.in2
-rw-r--r--win32/build/confutils.js12
2 files changed, 4 insertions, 10 deletions
diff --git a/win32/build/config.w32.h.in b/win32/build/config.w32.h.in
index 27f1140ab1..9d885667f0 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 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();
}