diff options
author | Ross Burton <ross.burton@intel.com> | 2014-06-16 11:52:56 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-17 08:59:05 +0100 |
commit | 01fb5bbf1b4b5f039fb3fbfc51682dc7d3ee8338 (patch) | |
tree | 37985decb99ab99993b64ef69abb1b15dddb3fc6 /meta/recipes-extended/wget | |
parent | 4dae6c1f045c5b2951ce17d4851f672305003958 (diff) | |
download | poky-01fb5bbf1b4b5f039fb3fbfc51682dc7d3ee8338.tar.gz |
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.
(From OE-Core rev: 4c9c737c1b93663a18e625918f32dfc2d4f9ca2f)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/wget')
-rw-r--r-- | meta/recipes-extended/wget/wget.inc | 7 |
1 files changed, 4 insertions, 3 deletions
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/" | |||
3 | SECTION = "console/network" | 3 | SECTION = "console/network" |
4 | LICENSE = "GPLv3" | 4 | LICENSE = "GPLv3" |
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" |
6 | DEPENDS = "openssl zlib libpcre" | 6 | DEPENDS = "gnutls zlib libpcre" |
7 | 7 | ||
8 | INC_PR = "r16" | 8 | INC_PR = "r16" |
9 | 9 | ||
10 | inherit autotools gettext texinfo update-alternatives | 10 | inherit autotools gettext texinfo update-alternatives |
11 | 11 | ||
12 | EXTRA_OECONF = "--enable-ipv6 --with-libssl-prefix=${STAGING_DIR_HOST} \ | 12 | EXTRA_OECONF = "--enable-ipv6 --with-ssl=gnutls --disable-rpath --disable-iri \ |
13 | --with-ssl=openssl --disable-rpath --disable-iri \ | ||
14 | ac_cv_header_uuid_uuid_h=no" | 13 | ac_cv_header_uuid_uuid_h=no" |
15 | 14 | ||
16 | ALTERNATIVE_${PN} = "wget" | 15 | ALTERNATIVE_${PN} = "wget" |
17 | ALTERNATIVE_PRIORITY = "100" | 16 | ALTERNATIVE_PRIORITY = "100" |
17 | |||
18 | RRECOMMENDS_${PN} += "ca-certificates" | ||