We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 236e12e commit f1702d2Copy full SHA for f1702d2
win32/build/confutils.js
@@ -3269,9 +3269,9 @@ function toolset_setup_common_cflags()
3269
// disable annoying warnings. In addition, time_t defaults
3270
// to 64-bit. Ask for 32-bit.
3271
if (TARGET_ARCH == 'x86') {
3272
- ADD_FLAG('CFLAGS', ' /wd4996 /D_USE_32BIT_TIME_T=1 ');
+ ADD_FLAG('CFLAGS', ' /wd4995 /wd4996 /D_USE_32BIT_TIME_T=1 ');
3273
} else {
3274
- ADD_FLAG('CFLAGS', ' /wd4996 ');
+ ADD_FLAG('CFLAGS', ' /wd4995 /wd4996 ');
3275
}
3276
3277
if (PHP_DEBUG == "yes") {
0 commit comments