[Python-checkins] r71611 - in python/branches/py3k-short-float-repr: configure configure.in

mark.dickinson python-checkins at python.org
Wed Apr 15 11:00:44 CEST 2009


Author: mark.dickinson
Date: Wed Apr 15 11:00:44 2009
New Revision: 71611

Log:
Temporary checkin to get more information out of some of the buildbots


Modified:
   python/branches/py3k-short-float-repr/configure
   python/branches/py3k-short-float-repr/configure.in

Modified: python/branches/py3k-short-float-repr/configure
==============================================================================
--- python/branches/py3k-short-float-repr/configure	(original)
+++ python/branches/py3k-short-float-repr/configure	Wed Apr 15 11:00:44 2009
@@ -4471,6 +4471,12 @@
 # compiler and platform.  BASECFLAGS tweaks need to be made even if the
 # user set OPT.
 
+# tempory inclusion to output the system-specific defines that GCC knows
+if test "$GCC" = yes
+then
+    $CC -dM -E - </dev/null
+fi
+
 # tweak OPT based on compiler and platform, only if the user didn't set
 # it on the command line
 

Modified: python/branches/py3k-short-float-repr/configure.in
==============================================================================
--- python/branches/py3k-short-float-repr/configure.in	(original)
+++ python/branches/py3k-short-float-repr/configure.in	Wed Apr 15 11:00:44 2009
@@ -783,6 +783,12 @@
 # compiler and platform.  BASECFLAGS tweaks need to be made even if the
 # user set OPT.
 
+# tempory inclusion to output the system-specific defines that GCC knows
+if test "$GCC" = yes
+then
+    $CC -dM -E - </dev/null
+fi
+
 # tweak OPT based on compiler and platform, only if the user didn't set
 # it on the command line
 AC_SUBST(OPT)


More information about the Python-checkins mailing list