From: David Lamparter Date: Thu, 13 Dec 2012 09:35:45 +0000 (+0100) Subject: build: update ICC warning CFLAGS X-Git-Tag: frr-2.0-rc1~1727 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=fd76f41ac0267dc4cf5438ac8f5e23fae6810d31;p=matthieu%2Ffrr.git build: update ICC warning CFLAGS Intel's icc doesn't accept "-wd " anymore, it's "-wd" 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 --- diff --git a/configure.ac b/configure.ac index fb6efd7eae..c1a4d8cdd2 100755 --- a/configure.ac +++ b/configure.ac @@ -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")