diff options
author | Ross Burton <ross.burton@arm.com> | 2023-05-15 14:29:50 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-05-22 10:53:48 +0100 |
commit | d3455c6ff2467db0671ff37c38520017a0be32db (patch) | |
tree | 1d6fd81bc1f441861cf06fda1c612f7dbbf9009b /meta/recipes-support/gnutls | |
parent | bc142cdcb087659a470f2481a01af787cbe8c916 (diff) | |
download | poky-d3455c6ff2467db0671ff37c38520017a0be32db.tar.gz |
gnutls: use system libtasn1
Instead of using an internal ASN.1 parser, re-use libtasn1 from the
system by default.
(From OE-Core rev: db20ffc4ffb5e734258f0a9f9d1fb72d1f0df490)
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/gnutls')
-rw-r--r-- | meta/recipes-support/gnutls/gnutls_3.8.0.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-support/gnutls/gnutls_3.8.0.bb b/meta/recipes-support/gnutls/gnutls_3.8.0.bb index 1e0f1f6912..0758eb15a9 100644 --- a/meta/recipes-support/gnutls/gnutls_3.8.0.bb +++ b/meta/recipes-support/gnutls/gnutls_3.8.0.bb | |||
@@ -30,13 +30,13 @@ SRC_URI[sha256sum] = "0ea0d11a1660a1e63f960f157b197abe6d0c8cb3255be24e1fb3815930 | |||
30 | 30 | ||
31 | inherit autotools texinfo pkgconfig gettext lib_package gtk-doc ptest | 31 | inherit autotools texinfo pkgconfig gettext lib_package gtk-doc ptest |
32 | 32 | ||
33 | PACKAGECONFIG ??= "libidn ${@bb.utils.filter('DISTRO_FEATURES', 'seccomp', d)}" | 33 | PACKAGECONFIG ??= "libidn libtasn1 ${@bb.utils.filter('DISTRO_FEATURES', 'seccomp', d)}" |
34 | 34 | ||
35 | # You must also have CONFIG_SECCOMP enabled in the kernel for | 35 | # You must also have CONFIG_SECCOMP enabled in the kernel for |
36 | # seccomp to work. | 36 | # seccomp to work. |
37 | PACKAGECONFIG[seccomp] = "--with-libseccomp-prefix=${STAGING_EXECPREFIXDIR},ac_cv_libseccomp=no,libseccomp" | 37 | PACKAGECONFIG[seccomp] = "--with-libseccomp-prefix=${STAGING_EXECPREFIXDIR},ac_cv_libseccomp=no,libseccomp" |
38 | PACKAGECONFIG[libidn] = "--with-idn,--without-idn,libidn2" | 38 | PACKAGECONFIG[libidn] = "--with-idn,--without-idn,libidn2" |
39 | PACKAGECONFIG[libtasn1] = "--with-included-libtasn1=no,--with-included-libtasn1,libtasn1" | 39 | PACKAGECONFIG[libtasn1] = "--without-included-libtasn1,--with-included-libtasn1,libtasn1" |
40 | PACKAGECONFIG[p11-kit] = "--with-p11-kit,--without-p11-kit,p11-kit" | 40 | 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}" |