changeset 716:4cf99fd03da6

core/kmod: disable ssl as not compatible with libressl
author David Demelier <markand@malikania.fr>
date Mon, 05 Aug 2019 12:39:35 +0200
parents 150598ec37e7
children 0a8e1630c1a9
files core/kmod/kmod.sh
diffstat 1 files changed, 2 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/core/kmod/kmod.sh	Mon Aug 05 12:38:51 2019 +0200
+++ b/core/kmod/kmod.sh	Mon Aug 05 12:39:35 2019 +0200
@@ -22,7 +22,7 @@
 PKGSUMMARY="Linux kernel module utilities"
 PKGDOWNLOAD="https://www.kernel.org/pub/linux/utils/kernel/$PKGNAME/$PKGNAME-$PKGVERSION.tar.xz"
 PKGDEPENDS="compression/zlib"
-PKGOPTIONS="SSL XZ ZLIB"
+PKGOPTIONS="XZ ZLIB"
 
 : ${CHOST:=$(uname -m)-linux-musl}
 : ${CBUILD:=$(uname -m)-linux-musl}
@@ -30,22 +30,16 @@
 : ${CFLAGS:=-O2}
 : ${LDFLAGS:=}
 : ${LIBS:=}
-: ${SSL:=yes}
 : ${XZ:=yes}
 : ${ZLIB:=yes}
 
-if [ "$SSL" = "yes" ]; then
-	PKGDEPENDS="crypto/libressl $PKGDEPENDS"
-	with_ssl="--with-openssl"
-else
-	with_ssl="--without-openssl"
-fi
 if [ "$XZ" = "yes" ]; then
 	PKGDEPENDS="compression/xz $PKGDEPENDS"
 	with_xz="--with-xz"
 else
 	with_xz="--without-xz"
 fi
+
 if [ "$ZLIB" = "yes" ]; then
 	PKGDEPENDS="compression/zlib $PKGDEPENDS"
 	with_zlib="--with-zlib"
@@ -67,7 +61,6 @@
 		--build=$CBUILD \
 		--host=$CHOST \
 		--prefix= \
-		$with_ssl \
 		$with_xz \
 		$with_zlib
 	make