From a070f75d4b7dd1b7d58d2f9939f33cdbd929a237 Mon Sep 17 00:00:00 2001 From: ddouthitt Date: Sat, 6 Oct 2001 00:31:08 +0000 Subject: [PATCH] Remove -Wno-unused from compile-time options; this prevents catching of MANY possible problems. LCDproc should compile cleanly without warnings WITHOUT this set. --- configure.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 7826b1d..9de552d 100644 --- a/configure.in +++ b/configure.in @@ -25,7 +25,8 @@ AC_MSG_RESULT($debug) if test $debug = "yes"; then CFLAGS="-g" else - CFLAGS="-Wno-unused -O6" +dnl CFLAGS="-Wno-unused -O6" + CFLAGS="-O6" fi CFLAGS="-Wall $CFLAGS" export CFLAGS