Config.in 546 B

1234567891011121314151617
  1. config BR2_PACKAGE_LINUX_PAM
  2. bool "linux-pam"
  3. depends on BR2_ENABLE_LOCALE
  4. depends on BR2_USE_WCHAR
  5. depends on !BR2_STATIC_LIBS
  6. depends on BR2_USE_MMU # fork()
  7. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C11/stdatomic.h
  8. help
  9. A Security Framework that Provides Authentication for
  10. Applications
  11. http://linux-pam.org
  12. comment "linux-pam needs a toolchain w/ wchar, locale, dynamic library, gcc >= 4.9"
  13. depends on BR2_USE_MMU
  14. depends on !BR2_ENABLE_LOCALE || !BR2_USE_WCHAR \
  15. || BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9