pajoye Sun, 04 Mar 2012 15:23:24 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=323866
Log: - fix bug #54407, Incorrectly defined NTDDI_VERSION macro Bug: https://bugs.php.net/54407 (Assigned) Incorrectly defined NTDDI_VERSION macro Changed paths: U php/php-src/branches/PHP_5_3/win32/build/config.w32.h.in U php/php-src/branches/PHP_5_4/win32/build/config.w32.h.in Modified: php/php-src/branches/PHP_5_3/win32/build/config.w32.h.in =================================================================== --- php/php-src/branches/PHP_5_3/win32/build/config.w32.h.in 2012-03-04 15:08:12 UTC (rev 323865) +++ php/php-src/branches/PHP_5_3/win32/build/config.w32.h.in 2012-03-04 15:23:24 UTC (rev 323866) @@ -6,8 +6,8 @@ /* Define the minimum supported version */ #undef _WIN32_WINNT #undef NTDDI_VERSION -#define _WIN32_WINNT 0x500 -#define NTDDI_VERSION _WIN32_WIN2K +#define _WIN32_WINNT 0x502 +#define NTDDI_VERSION 0x05010200 /* Default PHP / PEAR directories */ #define PHP_CONFIG_FILE_PATH (getenv("SystemRoot"))?getenv("SystemRoot"):"" Modified: php/php-src/branches/PHP_5_4/win32/build/config.w32.h.in =================================================================== --- php/php-src/branches/PHP_5_4/win32/build/config.w32.h.in 2012-03-04 15:08:12 UTC (rev 323865) +++ php/php-src/branches/PHP_5_4/win32/build/config.w32.h.in 2012-03-04 15:23:24 UTC (rev 323866) @@ -7,7 +7,7 @@ #undef _WIN32_WINNT #undef NTDDI_VERSION #define _WIN32_WINNT 0x502 -#define NTDDI_VERSION _WIN32_WIN2K +#define NTDDI_VERSION 0x05010200 /* Default PHP / PEAR directories */ #define PHP_CONFIG_FILE_PATH (getenv("SystemRoot"))?getenv("SystemRoot"):""
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php