[Python-checkins] cpython: compile with -std=c99

benjamin.peterson python-checkins at python.org
Wed Sep 7 14:56:20 EDT 2016


https://hg.python.org/cpython/rev/2fc6b04a89a3
changeset:   103241:2fc6b04a89a3
user:        Benjamin Peterson <benjamin at python.org>
date:        Wed Sep 07 11:53:55 2016 -0700
summary:
  compile with -std=c99

files:
  configure    |  2 ++
  configure.ac |  2 ++
  2 files changed, 4 insertions(+), 0 deletions(-)


diff --git a/configure b/configure
--- a/configure
+++ b/configure
@@ -6694,6 +6694,8 @@
 	    SCO_SV*) OPT="$OPT -m486 -DSCO5"
 	    ;;
         esac
+
+        OPT="$OPT -std=c99"
 	;;
 
     *)
diff --git a/configure.ac b/configure.ac
--- a/configure.ac
+++ b/configure.ac
@@ -1458,6 +1458,8 @@
 	    SCO_SV*) OPT="$OPT -m486 -DSCO5"
 	    ;;
         esac
+
+        OPT="$OPT -std=c99"
 	;;
 
     *)

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list