diff options
Diffstat (limited to 'package/python2/patches')
-rw-r--r-- | package/python2/patches/patch-Misc_python-config_in | 13 | ||||
-rw-r--r-- | package/python2/patches/patch-configure_ac | 22 |
2 files changed, 35 insertions, 0 deletions
diff --git a/package/python2/patches/patch-Misc_python-config_in b/package/python2/patches/patch-Misc_python-config_in new file mode 100644 index 000000000..7ea806bea --- /dev/null +++ b/package/python2/patches/patch-Misc_python-config_in @@ -0,0 +1,13 @@ +--- Python-2.7.5.orig/Misc/python-config.in 2013-05-12 05:32:49.000000000 +0200 ++++ Python-2.7.5/Misc/python-config.in 2013-10-30 21:09:36.000000000 +0100 +@@ -37,8 +37,8 @@ for opt in opt_flags: + print sysconfig.EXEC_PREFIX + + elif opt in ('--includes', '--cflags'): +- flags = ['-I' + sysconfig.get_python_inc(), +- '-I' + sysconfig.get_python_inc(plat_specific=True)] ++ flags = ['-I' + re.sub('host_', 'target_', sysconfig.get_python_inc()), ++ '-I' + re.sub('host_', 'target_', sysconfig.get_python_inc(plat_specific=True))] + if opt == '--cflags': + flags.extend(getvar('CFLAGS').split()) + print ' '.join(flags) diff --git a/package/python2/patches/patch-configure_ac b/package/python2/patches/patch-configure_ac new file mode 100644 index 000000000..0ec10f1de --- /dev/null +++ b/package/python2/patches/patch-configure_ac @@ -0,0 +1,22 @@ +--- Python-2.7.5.orig/configure.ac 2013-05-12 05:32:54.000000000 +0200 ++++ Python-2.7.5/configure.ac 2013-10-30 15:33:30.000000000 +0100 +@@ -19,7 +19,7 @@ AC_SUBST(host) + if test "$cross_compiling" = yes; then + AC_MSG_CHECKING([for python interpreter for cross build]) + if test -z "$PYTHON_FOR_BUILD"; then +- for interp in python$PACKAGE_VERSION python2 python; do ++ for interp in python; do + which $interp >/dev/null 2>&1 || continue + if $interp -c 'import sys;sys.exit(not (sys.version_info@<:@:2@:>@ >= (2,7) and sys.version_info@<:@0@:>@ < 3))'; then + break +@@ -1066,9 +1066,7 @@ then + if test "$Py_DEBUG" = 'true' ; then + # Optimization messes up debuggers, so turn it off for + # debug builds. +- OPT="-g -O0 -Wall $STRICT_PROTO" +- else +- OPT="-g $WRAP -O3 -Wall $STRICT_PROTO" ++ OPT="$STRICT_PROTO" + fi + ;; + *) |