diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2024-05-22 20:10:38 -0400 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-05-23 02:35:35 +0100 |
commit | 2dd81a7557fb8fda79e6724d77d929c5c0f95159 (patch) | |
tree | fee2eb5a58eeaefafeb0435c0ee959d688450297 /sys-apps | |
parent | sys-apps/xmbmon: regenerate vintage 2002 configure script (diff) | |
download | gentoo-2dd81a7557fb8fda79e6724d77d929c5c0f95159.tar.gz gentoo-2dd81a7557fb8fda79e6724d77d929c5c0f95159.tar.bz2 gentoo-2dd81a7557fb8fda79e6724d77d929c5c0f95159.zip |
sys-apps/pick: add whitelist for false positive configure implicit decls
Closes: https://bugs.gentoo.org/908573
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/pick/pick-4.0.0.ebuild | 13 |
1 files changed, 12 insertions, 1 deletions
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 |