From 4775934364a15296fe874339d3f48c938cb24dd7 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Tue, 15 Jan 2002 09:43:21 +0000 Subject: [PATCH] If using GCC, try to turn on -Wall. I want to be clean with respect to -Wall. --- configure.in | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/configure.in b/configure.in index f7704cb6..2931927d 100644 --- a/configure.in +++ b/configure.in @@ -30,6 +30,9 @@ fi # compile with optimisation and without debugging by default, unless # --debug is given. We must decide this before testing the compiler. +# Please allow this to default to yes, so that your users have more +# chance of getting a useful stack trace if problems occur. + AC_MSG_CHECKING([whether to include debugging symbols]) AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug], @@ -49,6 +52,12 @@ fi CFLAGS="$CFLAGS -DHAVE_CONFIG_H" +# If GCC, turn on warnings. +if test "x$GCC" = "xyes" +then + CFLAGS="$CFLAGS -Wall" +fi + AC_ARG_WITH(included-popt, [ --with-included-popt use bundled popt library, not from system]) -- 2.34.1