File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 6
6
/* Define the minimum supported version */
7
7
#undef _WIN32_WINNT
8
8
#undef NTDDI_VERSION
9
- #define _WIN32_WINNT 0x0600
10
- #define NTDDI_VERSION 0x06000100
9
+ #define _WIN32_WINNT 0x0601
10
+ #define NTDDI_VERSION 0x06010000
11
11
12
12
/* Default PHP / PEAR directories */
13
13
#define PHP_CONFIG_FILE_PATH (getenv("SystemRoot")?getenv("SystemRoot"):"")
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ var PHP_TEST_INI_PATH = "";
44
44
var PHP_TEST_INI = "" ;
45
45
var PHP_TEST_INI_EXT_EXCLUDE = "" ;
46
46
47
+ /* Care also about NTDDI_VERSION and _WIN32_WINNT in config.w32.h.in */
47
48
var WINVER = "0x0601" ; /* 7/2008r2 */
48
49
49
50
// There's a minimum requirement for re2c..
@@ -3027,7 +3028,7 @@ function toolset_setup_common_cflags()
3027
3028
{
3028
3029
// CFLAGS for building the PHP dll
3029
3030
DEFINE ( "CFLAGS_PHP" , "/D _USRDLL /D PHP7DLLTS_EXPORTS /D PHP_EXPORTS \
3030
- /D LIBZEND_EXPORTS /D TSRM_EXPORTS /D SAPI_EXPORTS /D _WIN32_WINNT =" + WINVER ) ;
3031
+ /D LIBZEND_EXPORTS /D TSRM_EXPORTS /D SAPI_EXPORTS /D WINVER =" + WINVER ) ;
3031
3032
3032
3033
DEFINE ( 'CFLAGS_PHP_OBJ' , '$(CFLAGS_PHP) $(STATIC_EXT_CFLAGS)' ) ;
3033
3034
You can’t perform that action at this time.
0 commit comments