aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-03-08 11:37:12 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-03-08 11:37:12 +0000
commit7e6043f04fbcb44a44b9cc46a00774011dd811ca (patch)
tree331e1bc120bdfa541875078684b0e4cee5e58fc2
parent576be36249407e0450f507676a49cc5630ba6532 (diff)
we ignore the ICC warning 1419 as well
-rw-r--r--acinclude.m44
1 files changed, 3 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 251592dc1..a53ca7827 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -510,8 +510,10 @@ AC_DEFUN([CURL_CC_DEBUG_OPTS],
dnl * 279 warns on static conditions in while expressions
dnl * 269 warns on our "%Od" printf formatters for curl_off_t output:
dnl "invalid format string conversion"
+ dnl * 1419 warns on "external declaration in primary source file"
+ dnl which we know and do on purpose.
- WARN="-wd279,269"
+ WARN="-wd279,269,1419"
if test "$gccnum" -gt "600"; then
dnl icc 6.0 and older doesn't have the -Wall flag