Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6e41347

Browse files
committed
Merged revisions 84946 via svnmerge from
svn+ssh://[email protected]/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. ........
1 parent bd5283f commit 6e41347

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -565,6 +565,8 @@ Extension Modules
565565
Build
566566
-----
567567

568+
- Issue #1633863: Don't ignore $CC under AIX.
569+
568570
- Issue #9810: Compile bzip2 source files in python's project file
569571
directly. It used to be built with bzip2's makefile.
570572

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /bin/sh
2-
# From configure.in Revision: 84675 .
2+
# From configure.in Revision: 84682 .
33
# Guess values for system-dependent variables and create Makefiles.
44
# Generated by GNU Autoconf 2.65 for python 3.1.
55
#
@@ -3131,7 +3131,7 @@ if test "${with_gcc+set}" = set; then :
31313131
else
31323132
31333133
case $ac_sys_system in
3134-
AIX*) CC=cc_r
3134+
AIX*) CC=${CC:-xlc_r}
31353135
without_gcc=;;
31363136
*) without_gcc=no;;
31373137
esac

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ AC_ARG_WITH(gcc,
435435
without_gcc=$withval;;
436436
esac], [
437437
case $ac_sys_system in
438-
AIX*) CC=cc_r
438+
AIX*) CC=${CC:-xlc_r}
439439
without_gcc=;;
440440
*) without_gcc=no;;
441441
esac])

0 commit comments

Comments
 (0)