Config.in 855 B

1234567891011121314151617181920212223242526272829303132333435
  1. config BR2_PACKAGE_PHP
  2. bool "php"
  3. help
  4. PHP is a widely-used general-purpose scripting
  5. language that is especially suited for Web development
  6. and can be embedded into HTML.
  7. http://www.php.net
  8. config BR2_PACKAGE_PHP_CLI
  9. bool "cli interface"
  10. depends on BR2_PACKAGE_PHP
  11. default y
  12. help
  13. command line interface for php.
  14. you must have at least cli or cgi selected.
  15. config BR2_PACKAGE_PHP_CGI
  16. bool "cgi interface"
  17. depends on BR2_PACKAGE_PHP
  18. default y
  19. help
  20. cgi interface for php
  21. you must have at least cli or cgi selected.
  22. config BR2_PACKAGE_PHP_FASTCGI
  23. bool "fastcgi"
  24. depends on BR2_PACKAGE_PHP_CGI
  25. default y
  26. help
  27. fast cgi interface for php
  28. if BR2_PACKAGE_PHP
  29. source "package/php/Config.ext"
  30. endif