diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-05-11 18:00:05 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-05-11 18:00:05 (GMT) |
commit | c8759666d5dd923cc5c04459ad119f7821e23be2 (patch) | |
tree | 50ab62ae797f57ab0fa3a700eaa48d9ac0418ad8 /configure | |
parent | 5302ba80e79e970873532ea54f3d0aea1e207c01 (diff) | |
download | cpython-c8759666d5dd923cc5c04459ad119f7821e23be2.zip cpython-c8759666d5dd923cc5c04459ad119f7821e23be2.tar.gz cpython-c8759666d5dd923cc5c04459ad119f7821e23be2.tar.bz2 |
-Wformat is needed by gcc 4.8 (closes #17547)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6253,7 +6253,7 @@ then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether gcc supports ParseTuple __format__" >&5 $as_echo_n "checking whether gcc supports ParseTuple __format__... " >&6; } save_CFLAGS=$CFLAGS - CFLAGS="$CFLAGS -Werror" + CFLAGS="$CFLAGS -Werror -Wformat" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ |