summaryrefslogtreecommitdiff
path: root/package/linux-pam
diff options
context:
space:
mode:
authorBrendan Heading <brendanheading@gmail.com>2015-08-20 23:32:13 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-08-26 15:25:09 +0200
commit25ecd24579f293ef4fcc6847094c4af39f4113af (patch)
treea12187774b630b83974a68ff37579ca2feda27af /package/linux-pam
parent1a07750cc55b83730fc264dc6c35bb8efebd5bf4 (diff)
packages/linux-pam: disable when using musl
Fixes: http://autobuild.buildroot.net/results/e33/e337d69420ad00b2cc4017d639a31803926f2353/ linux-pam needs some surgery to build under musl, so for the time being disable it until the issues are solved. Also disables dependent package python-pam, and dependent suboptions under openvmtools, rsh-redone and util-linux. Signed-off-by: Brendan Heading <brendanheading@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/linux-pam')
-rw-r--r--package/linux-pam/Config.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/linux-pam/Config.in b/package/linux-pam/Config.in
index 6b92886cf1..f5088b967f 100644
--- a/package/linux-pam/Config.in
+++ b/package/linux-pam/Config.in
@@ -10,11 +10,12 @@ config BR2_PACKAGE_LINUX_PAM
# https://lists.fedorahosted.org/pipermail/linux-pam-commits/2012-February/000105.html
# for details.
depends on !BR2_STATIC_LIBS
+ depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam
help
A Security Framework that Provides Authentication for Applications
http://linux-pam.org
-comment "linux-pam needs a toolchain w/ wchar, locale, dynamic library"
+comment "linux-pam needs a uClibc or (e)glibc toolchain w/ wchar, locale, dynamic library"
depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \
- || BR2_STATIC_LIBS
+ || BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL