diff options
author | Sam James <sam@gentoo.org> | 2021-04-07 01:52:26 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-04-07 01:57:42 +0000 |
commit | 7be914d238d7bba1728477547008e4efdf9bb8d4 (patch) | |
tree | 495b8822819e79760682855d7c4e5ba3063e2295 /app-arch/rpm | |
parent | app-arch/rpm: make openmp optional (diff) | |
download | gentoo-7be914d238d7bba1728477547008e4efdf9bb8d4.tar.gz gentoo-7be914d238d7bba1728477547008e4efdf9bb8d4.tar.bz2 gentoo-7be914d238d7bba1728477547008e4efdf9bb8d4.zip |
app-arch/rpm: add note about NSS deprecation to ebuild
4.16.0 warns:
"configure: WARNING: Using the nss library with rpm is deprecated and
support will be removed in a future release!"
Only libgcrypt (default) and openssl are not deprecated. Need to consider
this for a revbump or future releases.
Bug: https://bugs.gentoo.org/780684
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-arch/rpm')
-rw-r--r-- | app-arch/rpm/rpm-4.16.0.ebuild | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app-arch/rpm/rpm-4.16.0.ebuild b/app-arch/rpm/rpm-4.16.0.ebuild index 071d60b3c1df..af422db8c469 100644 --- a/app-arch/rpm/rpm-4.16.0.ebuild +++ b/app-arch/rpm/rpm-4.16.0.ebuild @@ -83,6 +83,10 @@ src_prepare() { src_configure() { append-cppflags -I"${EPREFIX}/usr/include/nss" -I"${EPREFIX}/usr/include/nspr" + # NOTE: 4.16.0 warns: + # "configure: WARNING: Using the nss library with rpm is deprecated and support will be removed in a future release!" + # Only libgcrypt (default) and openssl are not deprecated. We should consider this. + # bug #780684 econf \ --without-selinux \ --with-crypto=nss \ |