[Python-checkins] r84948 - in python/branches/release27-maint: Misc/NEWS configure configure.in
antoine.pitrou
python-checkins at python.org
Tue Sep 21 17:23:18 CEST 2010
Author: antoine.pitrou
Date: Tue Sep 21 17:23:17 2010
New Revision: 84948
Log:
Merged revisions 84946 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84946 | antoine.pitrou | 2010年09月21日 17:19:14 +0200 (mar., 21 sept. 2010) | 4 lines
Issue #1633863: Don't ignore $CC under AIX.
........
Modified:
python/branches/release27-maint/ (props changed)
python/branches/release27-maint/Misc/NEWS
python/branches/release27-maint/configure
python/branches/release27-maint/configure.in
Modified: python/branches/release27-maint/Misc/NEWS
==============================================================================
--- python/branches/release27-maint/Misc/NEWS (original)
+++ python/branches/release27-maint/Misc/NEWS Tue Sep 21 17:23:17 2010
@@ -332,6 +332,8 @@
Build
-----
+- Issue #1633863: Don't ignore $CC under AIX.
+
- Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows)
- Issue #9810: Compile bzip2 source files in python's project file
Modified: python/branches/release27-maint/configure
==============================================================================
--- python/branches/release27-maint/configure (original)
+++ python/branches/release27-maint/configure Tue Sep 21 17:23:17 2010
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in Revision: 84676 .
+# From configure.in Revision: 84683 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.65 for python 2.7.
#
@@ -3181,7 +3181,7 @@
else
case $ac_sys_system in
- AIX*) CC=cc_r
+ AIX*) CC=${CC:-xlc_r}
without_gcc=;;
BeOS*)
case $BE_HOST_CPU in
Modified: python/branches/release27-maint/configure.in
==============================================================================
--- python/branches/release27-maint/configure.in (original)
+++ python/branches/release27-maint/configure.in Tue Sep 21 17:23:17 2010
@@ -479,7 +479,7 @@
without_gcc=$withval;;
esac], [
case $ac_sys_system in
- AIX*) CC=cc_r
+ AIX*) CC=${CC:-xlc_r}
without_gcc=;;
BeOS*)
case $BE_HOST_CPU in
More information about the Python-checkins
mailing list