From: Anatol Belski Date: Wed, 28 Aug 2013 13:10:05 +0000 (+0200) Subject: removed the /Wp64 switch as we use true 64 bit compiler now X-Git-Tag: php-5.5.4RC1~5^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bd677b43a78ebc0779ed64781172225d15b35671;p=php removed the /Wp64 switch as we use true 64 bit compiler now --- diff --git a/win32/build/config.w32 b/win32/build/config.w32 index 3face08a8c..3401205c8f 100644 --- a/win32/build/config.w32 +++ b/win32/build/config.w32 @@ -155,7 +155,7 @@ if (VCVERS >= 1400) { // disable annoying warnings. In addition, time_t defaults // to 64-bit. Ask for 32-bit. if (X64) { - ADD_FLAG('CFLAGS', ' /wd4996 /Wp64 '); + ADD_FLAG('CFLAGS', ' /wd4996 '); } else { ADD_FLAG('CFLAGS', ' /wd4996 /D_USE_32BIT_TIME_T=1 '); } diff --git a/win32/build/config.w32.phpize.in b/win32/build/config.w32.phpize.in index b8bf45ea57..7b3b40633b 100644 --- a/win32/build/config.w32.phpize.in +++ b/win32/build/config.w32.phpize.in @@ -134,7 +134,7 @@ if (VCVERS >= 1400) { // disable annoying warnings. In addition, time_t defaults // to 64-bit. Ask for 32-bit. if (X64) { - ADD_FLAG('CFLAGS', ' /wd4996 /Wp64 '); + ADD_FLAG('CFLAGS', ' /wd4996 '); } else { ADD_FLAG('CFLAGS', ' /wd4996 /D_USE_32BIT_TIME_T=1 '); }