summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2010-06-17 14:08:36 -0700
committerCarl Worth <cworth@cworth.org>2010-06-23 16:13:31 -0700
commita32305a8bd28e19b2e97d430a9f61587b7222bd5 (patch)
tree7089b8f50e3a655f2b778e231faf81de5bd952a6
parenta22426dc4c934673e8f0af5c70a67505a4de7aad (diff)
configure: Remove some dead code.
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.
-rw-r--r--configure.ac7
1 files changed, 0 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac
index 68241f1..74dd661 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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