Commit d1702565 authored by Benjamin Peterson's avatar Benjamin Peterson

put -std=c99 in CFLAGS_NODIST

parent 7490577f
......@@ -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
......
......@@ -1458,8 +1458,6 @@ then
SCO_SV*) OPT="$OPT -m486 -DSCO5"
;;
esac
OPT="$OPT -std=c99"
;;
*)
......@@ -1478,6 +1476,8 @@ AC_SUBST(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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment