commit: 2dd81a7557fb8fda79e6724d77d929c5c0f95159 Author: Eli Schwartz <eschwartz93 <AT> gmail <DOT> com> AuthorDate: Thu May 23 00:10:38 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu May 23 01:35:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dd81a75
sys-apps/pick: add whitelist for false positive configure implicit decls Closes: https://bugs.gentoo.org/908573 Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com> Signed-off-by: Sam James <sam <AT> gentoo.org> sys-apps/pick/pick-4.0.0.ebuild | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/sys-apps/pick/pick-4.0.0.ebuild b/sys-apps/pick/pick-4.0.0.ebuild index 74ce519db2c9..180a03315b3f 100644 --- a/sys-apps/pick/pick-4.0.0.ebuild +++ b/sys-apps/pick/pick-4.0.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -21,6 +21,17 @@ PATCHES=( "${FILESDIR}/${PN}-4.0.0-tinfo.patch" ) +# all these checks are compiled via a homebrew configure script which +# does set -Werror. bug #908573 +QA_CONFIG_IMPL_DECL_SKIP+=( + # "check if _GNU_SOURCE is needed" ??? + wcwidth + # not available on Linux + pledge + # libbsd + strtonum +) + src_configure() { # not autoconf ./configure || die
