diff options
author | 2024-10-21 09:04:22 -0400 | |
---|---|---|
committer | 2024-10-22 00:59:11 -0400 | |
commit | 59608aa2c8e4627f56541e2795f7bdefd080d903 (patch) | |
tree | 1e892748c783aa860d8ce5c0506e8411fb0a2ccd /net-vpn/tor/tor-9999.ebuild | |
parent | net-vpn/tor: fix missing build-time dependency on acct-* packages (diff) | |
download | gentoo-59608aa2c8e4627f56541e2795f7bdefd080d903.tar.gz gentoo-59608aa2c8e4627f56541e2795f7bdefd080d903.tar.bz2 gentoo-59608aa2c8e4627f56541e2795f7bdefd080d903.zip |
net-vpn/tor: mark implicit function decl as FP
It correctly fails anyway. Gentoo doesn't even provide a nacl package
but intriguingly this configure script doesn't bother to use builtin
autoconf library checking routines...
Closes: https://bugs.gentoo.org/900092
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
Diffstat (limited to 'net-vpn/tor/tor-9999.ebuild')
-rw-r--r-- | net-vpn/tor/tor-9999.ebuild | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net-vpn/tor/tor-9999.ebuild b/net-vpn/tor/tor-9999.ebuild index 089779d771f6..22759b502bcd 100644 --- a/net-vpn/tor/tor-9999.ebuild +++ b/net-vpn/tor/tor-9999.ebuild @@ -73,6 +73,12 @@ PATCHES=( "${FILESDIR}"/${PN}-0.2.7.4-torrc.sample.patch ) +QA_CONFIG_IMPL_DECL_SKIP=( + # test correctly fails because -lnacl fails if not available + # https://bugs.gentoo.org/900092 + crypto_scalarmult_curve25519 +) + pkg_setup() { use test && python-any-r1_pkg_setup } |