From: Daniel Stenberg Date: Thu, 26 Feb 2004 12:40:09 +0000 (+0000) Subject: Make icc ignore "invalid format string conversion" warnings as well. They X-Git-Tag: curl-7_11_1~209 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85af357d8100c3321abf5bd44d5383a4d676a761;p=thirdparty%2Fcurl.git Make icc ignore "invalid format string conversion" warnings as well. They appear because of our home-grown option '%Od' for the curl_off_t output. --- diff --git a/acinclude.m4 b/acinclude.m4 index 1e9e5f625d..d69a181bfb 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -506,14 +506,15 @@ AC_DEFUN([CURL_CC_DEBUG_OPTS], if test "$ICC" = "yes"; then dnl this is icc, not gcc. - dnl Warning 279 warns on static conditions in while expressions, - dnl ignore that. + dnl ICC warnings we ignore: + 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" - WARN="-wd279" + WARN="-wd279,269" if test "$gccnum" -gt "600"; then - dnl icc 6.0 and older doesn't have the -Wall flag, although it does - dnl have -wd + dnl icc 6.0 and older doesn't have the -Wall flag WARN="-Wall $WARN" fi else dnl $ICC = yes