From: Martin Pool Date: Tue, 15 Jan 2002 09:43:21 +0000 (+0000) Subject: If using GCC, try to turn on -Wall. I want to be clean with respect X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/4775934364a15296fe874339d3f48c938cb24dd7 If using GCC, try to turn on -Wall. I want to be clean with respect to -Wall. --- 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])