From: Martin v. Löwis Date: Fri, 30 Dec 2005 12:32:48 +0000 (+0000) Subject: Use -xcode=pic32 for SunPro. X-Git-Tag: v2.4.3c1~165 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ddbcbe8f79768cb181d041dcb066712e9ee7511a;p=thirdparty%2FPython%2Fcpython.git Use -xcode=pic32 for SunPro. --- diff --git a/Misc/NEWS b/Misc/NEWS index 32ec933ecb99..3c5f21fed49e 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -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. diff --git a/configure b/configure index cdce52690438..2a74dbf5da68 100755 --- a/configure +++ b/configure @@ -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 1a8a88781b5f..fb483160bce5 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";