summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2025-04-25 13:00:37 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-04-29 09:55:31 +0100
commitf0714461021881b15fcfe5dfd824c22dcb623257 (patch)
tree8fa12c4097857ddf5175b985be79a75275e23350 /meta
parentbcf2a29314f76c335bd934e0a11f700575505e9b (diff)
downloadpoky-f0714461021881b15fcfe5dfd824c22dcb623257.tar.gz
wget: use libpcre2
libpcre is obsolete and unmaintained, as wget supports libpcre2 now we should use that instead. (From OE-Core rev: c287a6c6365c9e30beebebeb5cd936d3c22829db) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-extended/wget/wget.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/wget/wget.inc b/meta/recipes-extended/wget/wget.inc
index 151aeabcdc..13cf879067 100644
--- a/meta/recipes-extended/wget/wget.inc
+++ b/meta/recipes-extended/wget/wget.inc
@@ -27,7 +27,7 @@ RRECOMMENDS:${PN} += "ca-certificates"
27 27
28BBCLASSEXTEND = "nativesdk" 28BBCLASSEXTEND = "nativesdk"
29 29
30PACKAGECONFIG ??= "gnutls pcre zlib \ 30PACKAGECONFIG ??= "gnutls pcre2 zlib \
31 ${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)}" 31 ${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)}"
32PACKAGECONFIG[ares] = "--with-cares,--without-cares,c-ares" 32PACKAGECONFIG[ares] = "--with-cares,--without-cares,c-ares"
33PACKAGECONFIG[gnutls] = "--with-ssl=gnutls,,gnutls" 33PACKAGECONFIG[gnutls] = "--with-ssl=gnutls,,gnutls"
@@ -37,4 +37,5 @@ PACKAGECONFIG[libpsl] = "--with-libpsl,--without-libpsl,libpsl"
37PACKAGECONFIG[libuuid] = "--with-libuuid,--without-libuuid,util-linux" 37PACKAGECONFIG[libuuid] = "--with-libuuid,--without-libuuid,util-linux"
38PACKAGECONFIG[openssl] = "--with-ssl=openssl,,openssl" 38PACKAGECONFIG[openssl] = "--with-ssl=openssl,,openssl"
39PACKAGECONFIG[pcre] = "--enable-pcre,--disable-pcre,libpcre" 39PACKAGECONFIG[pcre] = "--enable-pcre,--disable-pcre,libpcre"
40PACKAGECONFIG[pcre2] = "--enable-pcre2,--disable-pcre2,libpcre2"
40PACKAGECONFIG[zlib] = "--with-zlib,--without-zlib,zlib" 41PACKAGECONFIG[zlib] = "--with-zlib,--without-zlib,zlib"