diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-10-20 07:58:13 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-10-22 22:31:26 +0200 |
commit | 26e2aca4359bc7cff080c8446a67b838a5026d15 (patch) | |
tree | 404eafc8d39d46286fc41118e9d511f873b6ce8d /package/python3 | |
parent | 75114af47a5f090b59b80d511472493b93c2e2c6 (diff) |
ssl: rework ssl support
Use libressl as default, where SSL is required.
Allow to choose openssl.
Disable SSL where not strictly required to build.
Diffstat (limited to 'package/python3')
-rw-r--r-- | package/python3/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/python3/Makefile b/package/python3/Makefile index 6ff76ba94..76e7a27b5 100644 --- a/package/python3/Makefile +++ b/package/python3/Makefile @@ -41,9 +41,9 @@ PKGFS_MOD_NCURSES:= libncurses PKGFD_MOD_READLINE:= readline support PKGFB_MOD_READLINE:= readline PKGFS_MOD_READLINE:= libreadline -PKGFD_MOD_SSL:= openssl support -PKGFB_MOD_SSL:= openssl -PKGFS_MOD_SSL:= libopenssl +PKGFD_MOD_SSL:= ssl support +PKGFB_MOD_SSL:= libressl +PKGFS_MOD_SSL:= libressl DISTFILES:= Python-${PKG_VERSION}.tar.xz WRKDIST= ${WRKDIR}/Python-${PKG_VERSION} |