1config 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 12 https://pecl.php.net/package/PAM 13 14comment "php-pam needs a toolchain w/ wchar, locale, dynamic library, gcc >= 4.9" 15 depends on BR2_USE_MMU 16 depends on !BR2_ENABLE_LOCALE || !BR2_USE_WCHAR \ 17 || BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 18