-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index c5759b0..283757f 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -103,14 +103,14 @@ nitpick=false | |||
103 | AC_ARG_ENABLE([nitpicking], | 103 | AC_ARG_ENABLE([nitpicking], |
104 | AC_HELP_STRING([--enable-nitpicking],[make compiler somewhat overly fastidious about the code it deals with]), | 104 | AC_HELP_STRING([--enable-nitpicking],[make compiler somewhat overly fastidious about the code it deals with]), |
105 | [ test "$enableval" = "no" || nitpick=true ] | 105 | [ test "$enableval" = "no" || nitpick=true ] |
106 | ) | 106 | ) |
107 | if $nitpick ; then | 107 | if $nitpick ; then |
108 | CPP_NITPICK="-pedantic -Wall -Wextra -Wundef -Wshadow \ | 108 | CPP_NITPICK="-pedantic -Wall -Wextra -Wundef -Wshadow \ |
109 | -Wunsafe-loop-optimizations -Wconversion -Wmissing-declarations \ | 109 | -Wunsafe-loop-optimizations -Wconversion -Wmissing-format-attribute \ |
110 | -Wmissing-format-attribute -Wredundant-decls" | 110 | -Wredundant-decls -ansi" |
111 | # -Wlogical-op -Wmissing-noreturn | 111 | # -Wlogical-op -Wmissing-noreturn |
112 | C_NITPICK="$CPP_NITPICK" | 112 | C_NITPICK="$CPP_NITPICK" |
113 | CXX_NITPICK="$C_NITPICK" | 113 | CXX_NITPICK="$C_NITPICK" |
114 | 114 | ||
115 | CPPFLAGS="$CPPFLAGS $CPP_NITPICK" | 115 | CPPFLAGS="$CPPFLAGS $CPP_NITPICK" |
116 | CFLAGS="$CFLAGS $C_NITPICK" | 116 | CFLAGS="$CFLAGS $C_NITPICK" |