123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- config BR2_PACKAGE_PHP56
- bool "php56"
- help
- PHP is a widely-used general-purpose scripting
- language that is especially suited for Web development
- and can be embedded into HTML.
- http://www.php.net
- if BR2_PACKAGE_PHP56
- source "../PSG/package/php56/Config.ext"
- config BR2_PACKAGE_PHP56_CLI
- bool
- config BR2_PACKAGE_PHP56_CGI
- bool
- config BR2_PACKAGE_PHP56_FPM
- bool
- choice
- prompt "Interface"
- default BR2_PACKAGE_PHP56_SAPI_CGI
- help
- Select the PHP interface(s).
- config BR2_PACKAGE_PHP56_SAPI_CGI
- bool "CGI"
- # CGI uses fork()
- depends on BR2_USE_MMU
- select BR2_PACKAGE_PHP56_CGI
- help
- Common Gateway Interface
- config BR2_PACKAGE_PHP56_SAPI_CLI
- bool "CLI"
- select BR2_PACKAGE_PHP56_CLI
- help
- Command Line Interface
- config BR2_PACKAGE_PHP56_SAPI_FPM
- bool "FPM"
- depends on BR2_USE_MMU
- select BR2_PACKAGE_PHP56_FPM
- help
- PHP-FPM (FastCGI Process Manager)
- config BR2_PACKAGE_PHP56_SAPI_CLI_CGI
- bool "CGI and CLI"
- # CGI uses fork()
- depends on BR2_USE_MMU
- select BR2_PACKAGE_PHP56_CLI
- select BR2_PACKAGE_PHP56_CGI
- help
- Command line and Common gateway interfaces
- config BR2_PACKAGE_PHP56_SAPI_CLI_FPM
- bool "FPM and CLI"
- depends on BR2_USE_MMU
- select BR2_PACKAGE_PHP56_CLI
- select BR2_PACKAGE_PHP56_FPM
- help
- Command line and PHP-FPM (FastCGI Process Manager)
- endchoice
- endif
|