[Python-checkins] commit of r41853 - in python/branches/release24-maint: Misc/NEWS configure configure.in

martin.v.loewis python-checkins at python.org
Fri Dec 30 13:32:49 CET 2005


Author: martin.v.loewis
Date: Fri Dec 30 13:32:48 2005
New Revision: 41853

Modified:
   python/branches/release24-maint/Misc/NEWS
   python/branches/release24-maint/configure
   python/branches/release24-maint/configure.in
Log:
Use -xcode=pic32 for SunPro. 


Modified: python/branches/release24-maint/Misc/NEWS
==============================================================================
--- python/branches/release24-maint/Misc/NEWS	(original)
+++ python/branches/release24-maint/Misc/NEWS	Fri Dec 30 13:32:48 2005
@@ -105,6 +105,8 @@
 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.
 

Modified: python/branches/release24-maint/configure
==============================================================================
--- python/branches/release24-maint/configure	(original)
+++ python/branches/release24-maint/configure	Fri Dec 30 13:32:48 2005
@@ -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 @@
 	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";

Modified: python/branches/release24-maint/configure.in
==============================================================================
--- python/branches/release24-maint/configure.in	(original)
+++ python/branches/release24-maint/configure.in	Fri Dec 30 13:32:48 2005
@@ -1410,6 +1410,7 @@
 	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";


More information about the Python-checkins mailing list