aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2004-01-13 10:57:46 +0000
committerWerner Koch <[email protected]>2004-01-13 10:57:46 +0000
commit2d14620b2ee6c59b18d84ef4b0828d7b10525b60 (patch)
tree0b816fd4971abddf6006f560346b0b0edcd4cfd2
parent* gpgkeys_hkp.c (search_key): Catch a mangled input file (useful if (diff)
downloadgnupg-2d14620b2ee6c59b18d84ef4b0828d7b10525b60.tar.gz
gnupg-2d14620b2ee6c59b18d84ef4b0828d7b10525b60.zip
* configure.ac: Use -Wformat-nonliteral in maintainer-mode.
Diffstat (limited to '')
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9f901e802..592e92593 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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