Config.in 600 B

1234567891011121314151617
  1. config BR2_PACKAGE_PHP_PAM
  2. bool "php-pam"
  3. depends on BR2_ENABLE_LOCALE # linux-pam
  4. depends on BR2_USE_WCHAR # linux-pam
  5. depends on BR2_USE_MMU # linux-pam
  6. depends on !BR2_STATIC_LIBS # linux-pam
  7. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # linux-pam
  8. select BR2_PACKAGE_LINUX_PAM
  9. help
  10. PHP PAM (Pluggable Authentication Modules) integration
  11. https://pecl.php.net/package/PAM
  12. comment "php-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