From 4c9c737c1b93663a18e625918f32dfc2d4f9ca2f Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Mon, 16 Jun 2014 11:52:56 +0100 Subject: wget: use GnuTLS instead of OpenSSL OpenSSL has license complications and GnuTLS is preferred, so although the license complications don't impact wget use GnuTLS for consistency. Also add a recommendation on ca-certificates so that https: URLs work. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/recipes-extended/wget/wget.inc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'meta') diff --git a/meta/recipes-extended/wget/wget.inc b/meta/recipes-extended/wget/wget.inc index a778bca614..642d502a50 100644 --- a/meta/recipes-extended/wget/wget.inc +++ b/meta/recipes-extended/wget/wget.inc @@ -3,15 +3,16 @@ HOMEPAGE = "https://www.gnu.org/software/wget/" SECTION = "console/network" LICENSE = "GPLv3" LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" -DEPENDS = "openssl zlib libpcre" +DEPENDS = "gnutls zlib libpcre" INC_PR = "r16" inherit autotools gettext texinfo update-alternatives -EXTRA_OECONF = "--enable-ipv6 --with-libssl-prefix=${STAGING_DIR_HOST} \ - --with-ssl=openssl --disable-rpath --disable-iri \ +EXTRA_OECONF = "--enable-ipv6 --with-ssl=gnutls --disable-rpath --disable-iri \ ac_cv_header_uuid_uuid_h=no" ALTERNATIVE_${PN} = "wget" ALTERNATIVE_PRIORITY = "100" + +RRECOMMENDS_${PN} += "ca-certificates" -- cgit 1.2.3-korg