diff options
author | Anatol Belski <ab@php.net> | 2013-08-28 15:10:05 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2013-08-28 15:10:05 +0200 |
commit | bd677b43a78ebc0779ed64781172225d15b35671 (patch) | |
tree | 64dff44ae3349c1e656b2ff66a35bbfc97535793 /win32/build/config.w32 | |
parent | 5a525bc823c6defbba151f05b9c729de11f4ff5b (diff) | |
download | php-git-bd677b43a78ebc0779ed64781172225d15b35671.tar.gz |
removed the /Wp64 switch as we use true 64 bit compiler now
Diffstat (limited to 'win32/build/config.w32')
-rw-r--r-- | win32/build/config.w32 | 2 |
1 files changed, 1 insertions, 1 deletions
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 '); } |