Revert "python: don't use libressl for host build"

This reverts commit ca800e60b0.
This commit is contained in:
Alexandru Ardelean
2017-01-11 11:07:22 +02:00
parent 3bfdf6797b
commit 515468346a
2 changed files with 1 additions and 12 deletions
@@ -1,11 +0,0 @@
--- 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: