python27: use absolute path to dtrace(8)
[unleashed-userland.git] / components / python / python27 / patches / 00-bits.patch
blob13e58874b2e5a88787b093dadd6d78a6383d5b8d
2 # This patch makes the pyconfig.h header file 32/64 bit friendly.
4 --- Python-2.7.6/configure.ac.~1~ 2013-11-09 23:36:41.000000000 -0800
5 +++ Python-2.7.6/configure.ac 2014-05-14 11:47:47.888887846 -0700
6 @@ -5,7 +5,7 @@
7 # Set VERSION so we only need to edit in one place (i.e., here)
8 m4_define(PYTHON_VERSION, 2.7)
10 -AC_PREREQ(2.65)
11 +AC_PREREQ(2.68)
13 AC_REVISION($Revision$)
14 AC_INIT(python, PYTHON_VERSION, http://bugs.python.org/)
15 @@ -2086,12 +2086,6 @@
16 if test -z "$CCSHARED"
17 then
18 case $ac_sys_system/$ac_sys_release in
19 - SunOS*) if test "$GCC" = yes;
20 - then CCSHARED="-fPIC";
21 - elif test `uname -p` = sparc;
22 - then CCSHARED="-xcode=pic32";
23 - else CCSHARED="-Kpic";
24 - fi;;
25 hp*|HP*) if test "$GCC" = yes;
26 then CCSHARED="-fPIC";
27 else CCSHARED="+z";