configure: Remove some dead code.
authorCarl Worth <cworth@cworth.org>
Thu, 17 Jun 2010 21:08:36 +0000 (14:08 -0700)
committerCarl Worth <cworth@cworth.org>
Wed, 23 Jun 2010 23:13:31 +0000 (16:13 -0700)
This block of code is useless because a (nearly-equivalent) assignment
is made immediately after. The only difference is the omission of
-Wunreadchable-code in the assignment being used. Presumably, that was
intended to be -Wunreachable-code (without the first 'd'), but since
this hasn't been being used we just drop it.

configure.ac

index 68241f1..74dd661 100644 (file)
@@ -52,13 +52,6 @@ if test "x$enable_debug" = xyes; then
     fi
 fi
 
-
-if test "x$GCC" = xyes ; then
-       WARN="-Wall -Wextra -Wunsafe-loop-optimizations -Wstack-protector -Wunreadchable-code"
-else
-       WARN=""
-fi
-
 if test "x$GXX" = xyes ; then
        WARN="-Wall -Wextra -Wunsafe-loop-optimizations -Wstack-protector"
 else