diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2005-12-30 12:32:48 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2005-12-30 12:32:48 (GMT) |
commit | ddbcbe8f79768cb181d041dcb066712e9ee7511a (patch) | |
tree | 6112598d58a400716f561f12ec2d5be351124c17 | |
parent | cac7b9d79a95b84d22b92589e43f22f736e54576 (diff) | |
download | cpython-ddbcbe8f79768cb181d041dcb066712e9ee7511a.zip cpython-ddbcbe8f79768cb181d041dcb066712e9ee7511a.tar.gz cpython-ddbcbe8f79768cb181d041dcb066712e9ee7511a.tar.bz2 |
Use -xcode=pic32 for SunPro.
-rw-r--r-- | Misc/NEWS | 2 | ||||
-rwxr-xr-x | configure | 3 | ||||
-rw-r--r-- | configure.in | 1 |
3 files changed, 5 insertions, 1 deletions
@@ -105,6 +105,8 @@ Tests Build ----- +- Use -xcode=pic32 for CCSHARED on Solaris with SunPro. + - The Windows .msi files are now compressed using lzx:21. This produces a significantly smaller installer. @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 39265 . +# From configure.in Revision: 41546 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.59 for python 2.4. # @@ -10412,6 +10412,7 @@ then case $ac_sys_system/$ac_sys_release in SunOS*) if test "$GCC" = yes; then CCSHARED="-fPIC"; + else CCSHARED="-xcode=pic32"; fi;; hp*|HP*) if test "$GCC" = yes; then CCSHARED="-fPIC"; diff --git a/configure.in b/configure.in index 1a8a887..fb48316 100644 --- a/configure.in +++ b/configure.in @@ -1410,6 +1410,7 @@ then case $ac_sys_system/$ac_sys_release in SunOS*) if test "$GCC" = yes; then CCSHARED="-fPIC"; + else CCSHARED="-xcode=pic32"; fi;; hp*|HP*) if test "$GCC" = yes; then CCSHARED="-fPIC"; |