diff options
Diffstat (limited to '')
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -7,6 +7,10 @@ * THANKS: Added Phong Nguyen, who found the Elgamal signing key problem. +2003-12-23 Werner Koch <[email protected]> + + * configure.ac: Use -Wformat-nonliteral in maintainer-mode. + 2003-11-30 David Shaw <[email protected]> * NEWS: Note --disable-rsa. diff --git a/configure.ac b/configure.ac index fb096a695..e8d9eaf87 100644 --- a/configure.ac +++ b/configure.ac @@ -1118,6 +1118,7 @@ AC_SUBST(W32LIBS) if test "$GCC" = yes; then if test "$USE_MAINTAINER_MODE" = "yes"; then CFLAGS="$CFLAGS -Wall -Wcast-align -Wshadow -Wstrict-prototypes" + CFLAGS="$CFLAGS -Wformat-nonliteral" else CFLAGS="$CFLAGS -Wall" fi |