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#
3565N/A--- Python-2.7.9/configure.ac.~1~ 2014-12-10 08:00:00.000000000 -0800
3565N/A+++ Python-2.7.9/configure.ac 2014-12-11 09:13:54.706541603 -0800
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/)
3565N/A@@ -2095,12 +2095,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";