From 406ea7de7a6751b92db63777d94e5d9a78995002 Mon Sep 17 00:00:00 2001 From: rofl0r Date: Sat, 23 Jun 2012 14:40:36 +0200 Subject: [PATCH] fix warning suppression --- configure | 2 +- configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 6a6922e..d840e8c 100755 --- a/configure +++ b/configure @@ -3150,7 +3150,7 @@ if test "$enable_warnings" = yes ; then case "$CC" in *gcc*) echo "$as_me:3151: result: enabling selected compiler warnings" >&5 echo "${ECHO_T}enabling selected compiler warnings" >&6 -CFLAGS="$CFLAGS -ansi -pedantic -Wall -Wno-implicit -Wno-long-long" ;; +CFLAGS="$CFLAGS -ansi -pedantic -Wall" ;; *) echo "$as_me:3155: result: disabling warnings for non-gcc compiler" >&5 echo "${ECHO_T}disabling warnings for non-gcc compiler" >&6 ;; diff --git a/configure.in b/configure.in index b834f93..6c21407 100644 --- a/configure.in +++ b/configure.in @@ -133,7 +133,7 @@ AC_ARG_ENABLE(asm, [ --enable-asm use hand-optimized asm cores] if test "$enable_warnings" = yes ; then case "$CC" in *gcc*) AC_MSG_RESULT(enabling selected compiler warnings) -CFLAGS="$CFLAGS -ansi -pedantic -Wall -Wno-implicit -Wno-long-long" ;; +CFLAGS="$CFLAGS -ansi -pedantic -Wall" ;; *) AC_MSG_RESULT(disabling warnings for non-gcc compiler) ;; esac