]> git.puffer.fish Git - matthieu/frr.git/commitdiff
build: update ICC warning CFLAGS
authorDavid Lamparter <equinox@opensourcerouting.org>
Thu, 13 Dec 2012 09:35:45 +0000 (10:35 +0100)
committerDavid Lamparter <equinox@opensourcerouting.org>
Thu, 13 Dec 2012 09:41:18 +0000 (10:41 +0100)
Intel's icc doesn't accept "-wd <number>" anymore, it's "-wd<number>"
these days.  But, anyhow, the warnings disabled in Quagga's configure.ac
don't seem to appear anywhere at all, so let's just remove the option
completely.

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
configure.ac

index fb6efd7eae80c13ef913f57cd8761836701590d8..c1a4d8cdd2042bf01f6c6676bd60368d576fde8d 100755 (executable)
@@ -129,7 +129,7 @@ AC_MSG_CHECKING([whether to set a default CFLAGS])
 if test "x${cflags_specified}" = "x" ; then
   case ${COMPILER} in
     "ICC")
-        CFLAGS="-Os -g -Wall -wd 279,869,981"
+        CFLAGS="-Os -g -Wall"
         AC_MSG_RESULT([Intel default])
         ;;
     "GCC")