aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-05-06 10:58:57 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-05-06 10:58:57 +0000
commitbde6c6685e6dc5d1b0cc0949b326d8ae091d1d86 (patch)
treef5e53c08398216e18d5938646ffd83752ffaff7a
parent58387b91f93a1b439c851813e5ac131375a57f84 (diff)
When using the icc compiler, we also ignore remark #1418 "external definition
with no prior declaration" since this is a habit we have in the code.
-rw-r--r--acinclude.m43
1 files changed, 2 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index a582a4eec..08f2a43b8 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -669,10 +669,11 @@ AC_DEFUN([CURL_CC_DEBUG_OPTS],
dnl "invalid format string conversion"
dnl * 279 warns on static conditions in while expressions
dnl * 981 warns on "operands are evaluated in unspecified order"
+ dnl * 1418 "external definition with no prior declaration"
dnl * 1419 warns on "external declaration in primary source file"
dnl which we know and do on purpose.
- WARN="-wd279,269,1419,981"
+ WARN="-wd279,269,981,1418,1419
if test "$gccnum" -gt "600"; then
dnl icc 6.0 and older doesn't have the -Wall flag