# # This patch makes the pyconfig.h header file 32/64 bit friendly. # --- Python-2.7.6/configure.ac.~1~ 2013-11-09 23:36:41.000000000 -0800 +++ Python-2.7.6/configure.ac 2014-05-14 11:47:47.888887846 -0700 @@ -5,7 +5,7 @@ # Set VERSION so we only need to edit in one place (i.e., here) m4_define(PYTHON_VERSION, 2.7) -AC_PREREQ(2.65) +AC_PREREQ(2.68) AC_REVISION($Revision$) AC_INIT(python, PYTHON_VERSION, http://bugs.python.org/) @@ -2086,12 +2086,6 @@ if test -z "$CCSHARED" then case $ac_sys_system/$ac_sys_release in - SunOS*) if test "$GCC" = yes; - then CCSHARED="-fPIC"; - elif test `uname -p` = sparc; - then CCSHARED="-xcode=pic32"; - else CCSHARED="-Kpic"; - fi;; hp*|HP*) if test "$GCC" = yes; then CCSHARED="-fPIC"; else CCSHARED="+z";