Issue #1633863: Don't ignore $CC under AIX.
This commit is contained in:
parent
6faee4e2ce
commit
f6350d2654
|
@ -214,6 +214,8 @@ Tests
|
||||||
Build
|
Build
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
- Issue #1633863: Don't ignore $CC under AIX.
|
||||||
|
|
||||||
- Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows)
|
- Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows)
|
||||||
|
|
||||||
- Issue #9810: Compile bzip2 source files in python's project file
|
- Issue #9810: Compile bzip2 source files in python's project file
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# From configure.in Revision: 84674 .
|
# From configure.in Revision: 84752 .
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.65 for python 3.2.
|
# Generated by GNU Autoconf 2.65 for python 3.2.
|
||||||
#
|
#
|
||||||
|
@ -3144,7 +3144,7 @@ if test "${with_gcc+set}" = set; then :
|
||||||
else
|
else
|
||||||
|
|
||||||
case $ac_sys_system in
|
case $ac_sys_system in
|
||||||
AIX*) CC=cc_r
|
AIX*) CC=${CC:-xlc_r}
|
||||||
without_gcc=;;
|
without_gcc=;;
|
||||||
*) without_gcc=no;;
|
*) without_gcc=no;;
|
||||||
esac
|
esac
|
||||||
|
@ -9230,7 +9230,6 @@ fi
|
||||||
OPT="-DDYNAMIC_ANNOTATIONS_ENABLED=1 $OPT"
|
OPT="-DDYNAMIC_ANNOTATIONS_ENABLED=1 $OPT"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
# -I${DLINCLDIR} is added to the compile rule for importdl.o
|
# -I${DLINCLDIR} is added to the compile rule for importdl.o
|
||||||
|
|
||||||
DLINCLDIR=.
|
DLINCLDIR=.
|
||||||
|
|
|
@ -449,7 +449,7 @@ AC_ARG_WITH(gcc,
|
||||||
without_gcc=$withval;;
|
without_gcc=$withval;;
|
||||||
esac], [
|
esac], [
|
||||||
case $ac_sys_system in
|
case $ac_sys_system in
|
||||||
AIX*) CC=cc_r
|
AIX*) CC=${CC:-xlc_r}
|
||||||
without_gcc=;;
|
without_gcc=;;
|
||||||
*) without_gcc=no;;
|
*) without_gcc=no;;
|
||||||
esac])
|
esac])
|
||||||
|
|
Loading…
Reference in New Issue