00-bits.patch revision 3272
458N/A#
458N/A# This patch makes the pyconfig.h header file 32/64 bit friendly.
3272N/A# As it is Solaris-specific, it is not suitable for upstream.
458N/A#
3272N/A--- Python-2.7.8/configure.ac.~1~ 2014-06-29 19:05:48.000000000 -0700
3272N/A+++ Python-2.7.8/configure.ac 2014-07-17 20:31:45.866247571 -0700
952N/A@@ -5,7 +5,7 @@
952N/A # Set VERSION so we only need to edit in one place (i.e., here)
952N/A m4_define(PYTHON_VERSION, 2.7)
458N/A
952N/A-AC_PREREQ(2.65)
952N/A+AC_PREREQ(2.68)
952N/A
952N/A AC_REVISION($Revision$)
458N/A AC_INIT(python, PYTHON_VERSION, http://bugs.python.org/)
3272N/A@@ -2092,12 +2092,6 @@
458N/A if test -z "$CCSHARED"
458N/A then
458N/A case $ac_sys_system/$ac_sys_release in
458N/A- SunOS*) if test "$GCC" = yes;
458N/A- then CCSHARED="-fPIC";
458N/A- elif test `uname -p` = sparc;
458N/A- then CCSHARED="-xcode=pic32";
458N/A- else CCSHARED="-Kpic";
458N/A- fi;;
458N/A hp*|HP*) if test "$GCC" = yes;
458N/A then CCSHARED="-fPIC";
458N/A else CCSHARED="+z";