summaryrefslogtreecommitdiff
path: root/win32/build
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2011-02-07 10:17:14 +0000
committerPierre Joye <pajoye@php.net>2011-02-07 10:17:14 +0000
commit312235cdacb896e235bb68b582ddc45f56f2b818 (patch)
tree8d268cb9fcd855e4da8b5f0e8d41281eca8e4969 /win32/build
parent6186c16449be5d5a165a6cfeef11ea9f09fdf521 (diff)
downloadphp-git-312235cdacb896e235bb68b582ddc45f56f2b818.tar.gz
- disable realloc warning about not checking its return value, 100% valid but way too many of them for now, reduce noises
Diffstat (limited to 'win32/build')
-rw-r--r--win32/build/config.w321
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/build/config.w32 b/win32/build/config.w32
index 79985bdefb..49c55daa46 100644
--- a/win32/build/config.w32
+++ b/win32/build/config.w32
@@ -416,4 +416,5 @@ if (PHP_SECURITY_FLAGS == "yes") {
ARG_ENABLE("static-analyze", "Enable the VC compiler static analyze", "no");
if (PHP_STATIC_ANALYZE == "yes" && PHP_SNAPSHOT_BUILD == "no") {
ADD_FLAG("CFLAGS", " /analyze ");
+ ADD_FLAG("CFLAGS", " /wd6308 ");
}