35 lines
842 B
Plaintext
35 lines
842 B
Plaintext
config BR2_PACKAGE_PHP
|
|
bool "php"
|
|
default n
|
|
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
|
|
|
|
config BR2_PACKAGE_PHP_CLI
|
|
bool "cli interface"
|
|
depends on BR2_PACKAGE_PHP
|
|
default y
|
|
help
|
|
command line interface for php.
|
|
you must have at least cli or cgi selected.
|
|
|
|
config BR2_PACKAGE_PHP_CGI
|
|
bool "cgi interface"
|
|
depends on BR2_PACKAGE_PHP
|
|
default y
|
|
help
|
|
cgi interface for php
|
|
you must have at least cli or cgi selected.
|
|
|
|
config BR2_PACKAGE_PHP_FASTCGI
|
|
bool "fastcgi"
|
|
depends on BR2_PACKAGE_PHP_CGI
|
|
default y
|
|
help
|
|
fast cgi interface for php
|
|
|
|
source "package/php/Config.ext"
|