commit fd23a5ee2936d68f8693af82b26594963b39b451 parent fad0bcccc83c64aa93d710ce0d0adc5e4dd1385b Author: Hannu Nyman <hannu.nyman@iki.fi> Date: Fri, 6 Jan 2017 16:02:38 +0200 Merge pull request #3773 from commodo/python-fix-host-build python: don't use libressl for host build Diffstat:
| M | lang/python/Makefile | | | 2 | +- |
| A | lang/python/patches/012-disable-openssl-for-hashlib-on-host-build.patch | | | 11 | +++++++++++ |
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/lang/python/Makefile b/lang/python/Makefile @@ -12,7 +12,7 @@ include ./files/python-version.mk PKG_NAME:=python PKG_VERSION:=$(PYTHON_VERSION).$(PYTHON_VERSION_MICRO) -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=Python-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://www.python.org/ftp/python/$(PKG_VERSION) diff --git a/lang/python/patches/012-disable-openssl-for-hashlib-on-host-build.patch b/lang/python/patches/012-disable-openssl-for-hashlib-on-host-build.patch @@ -0,0 +1,11 @@ +--- a/setup.py ++++ b/setup.py +@@ -859,7 +859,7 @@ class PyBuildExt(build_ext): + + min_openssl_ver = 0x00907000 + have_any_openssl = ssl_incs is not None and ssl_libs is not None +- have_usable_openssl = (have_any_openssl and ++ have_usable_openssl = cross_compiling and (have_any_openssl and + openssl_ver >= min_openssl_ver) + + if have_any_openssl: