1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-09 23:39:51 +02:00

* configure.ac: Use -Wformat-nonliteral in maintainer-mode.

This commit is contained in:
Werner Koch 2004-01-13 10:57:46 +00:00
parent 580faa8675
commit 2d14620b2e
2 changed files with 5 additions and 0 deletions

View File

@ -7,6 +7,10 @@
* THANKS: Added Phong Nguyen, who found the Elgamal signing key
problem.
2003-12-23 Werner Koch <wk@gnupg.org>
* configure.ac: Use -Wformat-nonliteral in maintainer-mode.
2003-11-30 David Shaw <dshaw@jabberwocky.com>
* NEWS: Note --disable-rsa.

View File

@ -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