summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2012-12-13 10:35:45 +0100
committerDavid Lamparter <equinox@opensourcerouting.org>2012-12-13 10:41:18 +0100
commitfd76f41ac0267dc4cf5438ac8f5e23fae6810d31 (patch)
tree9b1e98811be47c511c8545183b3cd145dd3b273b /configure.ac
parente1a555b67cc868f95ea2b53c278bd8d091333e5f (diff)
build: update ICC warning CFLAGS
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>
Diffstat (limited to 'configure.ac')
-rwxr-xr-xconfigure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index fb6efd7e..c1a4d8cd 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")