[Python-checkins] r72276 - in python/branches/release30-maint: configure pyconfig.h.in

mark.dickinson python-checkins at python.org
Mon May 4 15:49:31 CEST 2009


Author: mark.dickinson
Date: Mon May  4 15:49:30 2009
New Revision: 72276

Log:
Regenerate configure and pyconfig.h.in


Modified:
   python/branches/release30-maint/configure
   python/branches/release30-maint/pyconfig.h.in

Modified: python/branches/release30-maint/configure
==============================================================================
--- python/branches/release30-maint/configure	(original)
+++ python/branches/release30-maint/configure	Mon May  4 15:49:30 2009
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 68280 .
+# From configure.in Revision: 68442 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.61 for python 3.0.
 #
@@ -2228,7 +2228,7 @@
 if test "${with_gcc+set}" = set; then
   withval=$with_gcc;
 	case $withval in
-	no)	CC=cc
+	no)	CC=${CC:-cc}
 		without_gcc=yes;;
 	yes)	CC=gcc
 		without_gcc=no;;

Modified: python/branches/release30-maint/pyconfig.h.in
==============================================================================
--- python/branches/release30-maint/pyconfig.h.in	(original)
+++ python/branches/release30-maint/pyconfig.h.in	Mon May  4 15:49:30 2009
@@ -58,6 +58,10 @@
 /* Define to 1 if you have the <bluetooth.h> header file. */
 #undef HAVE_BLUETOOTH_H
 
+/* Define if mbstowcs(NULL, "text", 0) does not return the number of wide
+   chars that would be converted. */
+#undef HAVE_BROKEN_MBSTOWCS
+
 /* Define if nice() returns success/failure instead of the new priority. */
 #undef HAVE_BROKEN_NICE
 
@@ -357,7 +361,7 @@
 /* Define to 1 if you have the <libintl.h> header file. */
 #undef HAVE_LIBINTL_H
 
-/* Define to 1 if you have the `readline' library (-lreadline). */
+/* Define if you have the readline library (-lreadline). */
 #undef HAVE_LIBREADLINE
 
 /* Define to 1 if you have the `resolv' library (-lresolv). */
@@ -800,10 +804,6 @@
 /* Define to 1 if you have the `wcsxfrm' function. */
 #undef HAVE_WCSXFRM
 
-/* Define if mbstowcs(NULL, "text", 0) does not return the number of 
-   wide chars that would be converted */
-#undef HAVE_BROKEN_MBSTOWCS
-
 /* Define if tzset() actually switches the local timezone in a meaningful way.
    */
 #undef HAVE_WORKING_TZSET


More information about the Python-checkins mailing list