diff options
author | jgeboski <jgeboski@gmail.com> | 2015-01-27 20:20:46 -0500 |
---|---|---|
committer | jgeboski <jgeboski@gmail.com> | 2015-01-27 20:20:46 -0500 |
commit | 3c3a91a4472f4b58da7a44f25336934571311701 (patch) | |
tree | b40156c0f600d4160fd9d04b9c4257674919747d /configure.ac | |
parent | d930418085de78ff5e2ba8e4de53e7085e8d00a8 (diff) | |
download | bitlbee-facebook-3c3a91a4472f4b58da7a44f25336934571311701.tar.gz bitlbee-facebook-3c3a91a4472f4b58da7a44f25336934571311701.tar.bz2 bitlbee-facebook-3c3a91a4472f4b58da7a44f25336934571311701.tar.xz |
Check format string security at compile-time
This enables various format string security checks by the compiler in
attempt to avoid run-time failures.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 9bdf0fb..4ea9d4a 100644 --- a/configure.ac +++ b/configure.ac @@ -69,7 +69,7 @@ AS_IF( [AC_DEFINE(DEBUG_FACEBOOK, 1) AS_IF( [test "x$MINIMAL_FLAGS" == "xno"], - [CFLAGS="$CFLAGS -Wall -g -O0"] + [CFLAGS="$CFLAGS -Wall -Wformat-nonliteral -g -O0"] )] ) |