commit: a478b4c427cfc51188ec9273952ad498de95a39f Author: Matt Turner <mattst88 <AT> gentoo <DOT> org> AuthorDate: Wed May 10 01:35:54 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu May 11 01:24:41 2023 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=a478b4c4
install-qa-check.d/90config-impl-decl: Skip res_ndestroy on Linux Seen in dev-libs/glib. It seems that at least Darwin, FreeBSD, OpenBSD, NetBSD, and Solaris have this function. Bug: https://bugs.gentoo.org/898232 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org> Signed-off-by: Sam James <sam <AT> gentoo.org> bin/install-qa-check.d/90config-impl-decl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bin/install-qa-check.d/90config-impl-decl b/bin/install-qa-check.d/90config-impl-decl index 43be4222b..4e9494931 100644 --- a/bin/install-qa-check.d/90config-impl-decl +++ b/bin/install-qa-check.d/90config-impl-decl @@ -40,6 +40,11 @@ add_default_skips() { # https://gcc.gnu.org/onlinedocs/gcc/_005f_005fatomic-Builtins.html "__atomic_*" ) + + # Functions not available on Linux + [[ ${CHOST} == *linux* ]] && QA_CONFIG_IMPL_DECL_SKIP+=( + res_ndestroy + ) } find_log_targets() {
