diff options
author | Ross Burton <ross.burton@arm.com> | 2023-05-15 14:29:49 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-05-22 10:53:48 +0100 |
commit | bc142cdcb087659a470f2481a01af787cbe8c916 (patch) | |
tree | 608bda41268d686f50506c06d4afef8e36155357 /meta/recipes-support | |
parent | abdaeae74d79c5aa766b8321b353715a2875c74a (diff) | |
download | poky-bc142cdcb087659a470f2481a01af787cbe8c916.tar.gz |
gnutls: add PACKAGECONFIG options for certification compression
GnuTLS has optional support for certificate compression. These are not
widely enabled in other distributions and were previously disabled in
standard builds, so don't enable them by default.
(From OE-Core rev: d22a406e7ca3018e0d1c0a7b1b6254c2aba6faba)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/gnutls/gnutls_3.8.0.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-support/gnutls/gnutls_3.8.0.bb b/meta/recipes-support/gnutls/gnutls_3.8.0.bb index e6b9a527a6..1e0f1f6912 100644 --- a/meta/recipes-support/gnutls/gnutls_3.8.0.bb +++ b/meta/recipes-support/gnutls/gnutls_3.8.0.bb | |||
@@ -41,6 +41,10 @@ PACKAGECONFIG[p11-kit] = "--with-p11-kit,--without-p11-kit,p11-kit" | |||
41 | PACKAGECONFIG[tpm] = "--with-tpm,--without-tpm,trousers" | 41 | PACKAGECONFIG[tpm] = "--with-tpm,--without-tpm,trousers" |
42 | PACKAGECONFIG[fips] = "--enable-fips140-mode --with-libdl-prefix=${STAGING_BASELIBDIR}" | 42 | PACKAGECONFIG[fips] = "--enable-fips140-mode --with-libdl-prefix=${STAGING_BASELIBDIR}" |
43 | PACKAGECONFIG[dane] = "--enable-libdane,--disable-libdane,unbound" | 43 | PACKAGECONFIG[dane] = "--enable-libdane,--disable-libdane,unbound" |
44 | # Certificate compression | ||
45 | PACKAGECONFIG[brotli] = "--with-brotli,--without-brotli,brotli" | ||
46 | PACKAGECONFIG[zlib] = "--with-zlib,--without-zlib,zlib" | ||
47 | PACKAGECONFIG[zstd] = "--with-zstd,--without-zstd,zstd" | ||
44 | 48 | ||
45 | EXTRA_OECONF = " \ | 49 | EXTRA_OECONF = " \ |
46 | --enable-doc \ | 50 | --enable-doc \ |