commit: b945f1ecd17c492f08d79e5927003b97ec41db5e
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Wed May 10 01:47:04 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu May 11 01:24:42 2023 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=b945f1ec
install-qa-check.d/90config-impl-decl: Skip res_getservers on Linux
Seen in app-emulation/wine-*. It seems that at least Darwin, NetBSD, and
Solaris have this function.
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 | 1 +
1 file changed, 1 insertion(+)
diff --git a/bin/install-qa-check.d/90config-impl-decl
b/bin/install-qa-check.d/90config-impl-decl
index 4e9494931..9950ac934 100644
--- a/bin/install-qa-check.d/90config-impl-decl
+++ b/bin/install-qa-check.d/90config-impl-decl
@@ -43,6 +43,7 @@ add_default_skips() {
# Functions not available on Linux
[[ ${CHOST} == *linux* ]] && QA_CONFIG_IMPL_DECL_SKIP+=(
+ res_getservers
res_ndestroy
)
}