Alexander Pyhalov
2014-12-13 7b0dcec86c5455046c26524cf1a36c2e9df55fd9
commit | author | age
5b3229 1 #
AP 2 # This patch addresses problems with the configure script.
3 # As it is Solaris-specific, it is not suitable for upstream.
4 #
7b0dce 5 --- Python-3.4.2/configure.ac.~2~    2014-09-22 12:56:55.683506632 -0700
AP 6 +++ Python-3.4.2/configure.ac    2014-09-22 12:56:55.695790952 -0700
5b3229 7 @@ -5,7 +5,7 @@
AP 8  # Set VERSION so we only need to edit in one place (i.e., here)
9  m4_define(PYTHON_VERSION, 3.4)
10  
11 -AC_PREREQ(2.65)
12 +AC_PREREQ(2.68)
13  
14  AC_INIT(python, PYTHON_VERSION, http://bugs.python.org/)
15  
7b0dce 16 @@ -2114,12 +2114,6 @@
5b3229 17  if test -z "$CCSHARED"
AP 18  then
19      case $ac_sys_system/$ac_sys_release in
20 -    SunOS*) if test "$GCC" = yes;
21 -        then CCSHARED="-fPIC";
22 -        elif test `uname -p` = sparc;
23 -        then CCSHARED="-xcode=pic32";
24 -        else CCSHARED="-Kpic";
25 -        fi;;
26      hp*|HP*) if test "$GCC" = yes;
27           then CCSHARED="-fPIC";
28           else CCSHARED="+z";