diff options
author | Pierre Joye <pajoye@php.net> | 2012-03-04 22:15:12 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2012-03-04 22:15:12 +0000 |
commit | ad8474c578b6c5f0cfe5035ee02ca1e365af4ca3 (patch) | |
tree | b5580ca010894ea2aff42fcea5035edfb6395446 | |
parent | ffded0020b7f3b218074e785a2c435eebdcde176 (diff) | |
download | php-git-ad8474c578b6c5f0cfe5035ee02ca1e365af4ca3.tar.gz |
- fix bug #54407, Incorrectly defined NTDDI_VERSION macro
-rw-r--r-- | win32/build/config.w32.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/build/config.w32.h.in b/win32/build/config.w32.h.in index 1103fa92a4..c6cf076bab 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 0x502 +#define _WIN32_WINNT 0x0501 #define NTDDI_VERSION 0x05010200 /* Default PHP / PEAR directories */ |