From: Bernd Kuhls Date: Tue, 24 May 2016 20:03:34 +0000 (+0200) Subject: package/libsemanage: disable on musl X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d8e1244695ffb90b4670b800df02958e5a667777;p=buildroot.git package/libsemanage: disable on musl Suggested by Thomas: http://article.gmane.org/gmane.comp.lib.uclibc.buildroot/149138 "getpwent_r() is a glibc-specific extension, so it will most likely not be implemented by musl." Signed-off-by: Bernd Kuhls Signed-off-by: Peter Korsgaard --- diff --git a/package/libsemanage/Config.in b/package/libsemanage/Config.in index d9a83c0cf5..5e9ad8fee5 100644 --- a/package/libsemanage/Config.in +++ b/package/libsemanage/Config.in @@ -5,6 +5,7 @@ config BR2_PACKAGE_LIBSEMANAGE select BR2_PACKAGE_BZIP2 depends on BR2_TOOLCHAIN_HAS_THREADS depends on !BR2_STATIC_LIBS + depends on !BR2_TOOLCHAIN_USES_MUSL # getpwent_r() depends on !BR2_arc help libsemanage is the policy management library. It uses @@ -19,4 +20,5 @@ config BR2_PACKAGE_LIBSEMANAGE comment "libsemanage needs a toolchain w/ threads, dynamic library" depends on !BR2_arc + depends on !BR2_TOOLCHAIN_USES_MUSL depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS