summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-07 12:00:06 -0700
committerBenjamin Peterson <benjamin@python.org>2016-09-07 12:00:06 -0700
commitf69d7981b4b0285b351d1b6ad7a4f62f701cf143 (patch)
treeb787097001684bed6ee24d6be239ab8cfeae0682 /configure
parenta2abffdcf2425e08c07b6a3c58dde49c35b81884 (diff)
downloadcpython-f69d7981b4b0285b351d1b6ad7a4f62f701cf143.tar.gz
put -std=c99 in CFLAGS_NODIST
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 121cf6a110..94a74353f4 100755
--- a/configure
+++ b/configure
@@ -6694,8 +6694,6 @@ then
SCO_SV*) OPT="$OPT -m486 -DSCO5"
;;
esac
-
- OPT="$OPT -std=c99"
;;
*)
@@ -6714,6 +6712,8 @@ UNIVERSAL_ARCH_FLAGS=
# tweak BASECFLAGS based on compiler and platform
case $GCC in
yes)
+ CFLAGS_NODIST="$CFLAGS_NODIST -std=c99"
+
# Python doesn't violate C99 aliasing rules, but older versions of
# GCC produce warnings for legal Python code. Enable
# -fno-strict-aliasing on versions of GCC that support but produce