summaryrefslogtreecommitdiff
path: root/package/python2
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-11-04 14:37:11 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-11-04 14:37:11 +0100
commitcb78e74dce8c998fe4075d998def392f03a25876 (patch)
tree8a7b7cf40f4136a78b397fd32a8d71d1ff5b287d /package/python2
parent57990dc4e570646f4d08c22ba645a458fd7524a1 (diff)
fix cross-compile on MacOS X host
Diffstat (limited to 'package/python2')
-rw-r--r--package/python2/Makefile6
-rw-r--r--package/python2/patches/patch-configure17
2 files changed, 21 insertions, 2 deletions
diff --git a/package/python2/Makefile b/package/python2/Makefile
index 42ac46163..67d8e29ba 100644
--- a/package/python2/Makefile
+++ b/package/python2/Makefile
@@ -13,7 +13,7 @@ PKG_DEPENDS:= libpthread
PKG_URL:= http://www.python.org/
PKG_SITES:= http://www.python.org/ftp/python/${PKG_VERSION}/
-PKG_HOST_DEPENDS:= !netbsd !openbsd !cygwin !darwin
+PKG_HOST_DEPENDS:= !netbsd !openbsd !cygwin
DISTFILES= Python-${PKG_VERSION}.tgz
WRKDIST= ${WRKDIR}/Python-${PKG_VERSION}
@@ -23,15 +23,17 @@ include ${TOPDIR}/mk/package.mk
$(eval $(call PKG_template,PYTHON2,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
MAKE_ENV+= OPT="$(TARGET_CFLAGS)" \
+ RANLIB="${TARGET_CROSS}ranlib" \
HOSTPYTHON=./hostpython \
HOSTPGEN=./Parser/hostpgen
CONFIGURE_ENV+= OPT="$(TARGET_CFLAGS)" \
ac_cv_have_long_long_format=yes
CONFIGURE_ARGS:= --with-threads \
+ --disable-toolbox-glue \
--with-system-ffi \
--without-cxx-main
-pre-configure:
+post-extract:
(cd ${WRKBUILD}; rm -rf config.{cache,status} ; \
OPT="$(HOSTCFLAGS)" \
./configure --without-cxx-main --without-threads \
diff --git a/package/python2/patches/patch-configure b/package/python2/patches/patch-configure
new file mode 100644
index 000000000..8c9893234
--- /dev/null
+++ b/package/python2/patches/patch-configure
@@ -0,0 +1,17 @@
+--- Python-2.7.orig/configure 2010-05-28 17:28:47.000000000 +0200
++++ Python-2.7/configure 2010-11-04 14:13:05.000000000 +0100
+@@ -2972,12 +2972,12 @@ fi
+ $as_echo_n "checking MACHDEP... " >&6; }
+ if test -z "$MACHDEP"
+ then
+- ac_sys_system=`uname -s`
++ ac_sys_system=Linux
+ if test "$ac_sys_system" = "AIX" \
+ -o "$ac_sys_system" = "UnixWare" -o "$ac_sys_system" = "OpenUNIX"; then
+ ac_sys_release=`uname -v`
+ else
+- ac_sys_release=`uname -r`
++ ac_sys_release=2.6
+ fi
+ ac_md_system=`echo $ac_sys_system |
+ tr -d '/ ' | tr '[A-Z]' '[a-z]'`