25ecd24579
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>
22 lines
849 B
Plaintext
22 lines
849 B
Plaintext
config BR2_PACKAGE_LINUX_PAM
|
|
bool "linux-pam"
|
|
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
|
|
select BR2_PACKAGE_FLEX
|
|
depends on (BR2_ENABLE_LOCALE && BR2_USE_WCHAR)
|
|
# While linux-pam does have some support for statically linked
|
|
# modules (through --enable-static-modules), it doesn't work
|
|
# properly due to a build cycle between libpam and
|
|
# modules. See
|
|
# 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 uClibc or (e)glibc toolchain w/ wchar, locale, dynamic library"
|
|
depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \
|
|
|| BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL
|