Config.in 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. if BR2_PACKAGE_PHP
  9. config BR2_PACKAGE_PHP_CLI
  10. bool
  11. config BR2_PACKAGE_PHP_CGI
  12. bool
  13. choice
  14. prompt "PHP interface"
  15. default BR2_PACKAGE_PHP_SAPI_CGI
  16. help
  17. Select the PHP interface(s).
  18. config BR2_PACKAGE_PHP_SAPI_CLI
  19. bool "cli interface"
  20. select BR2_PACKAGE_PHP_CLI
  21. help
  22. Command line interface for PHP.
  23. config BR2_PACKAGE_PHP_SAPI_CGI
  24. bool "cgi interface"
  25. select BR2_PACKAGE_PHP_CGI
  26. help
  27. CGI interface for PHP.
  28. config BR2_PACKAGE_PHP_SAPI_CLI_CGI
  29. bool "cli and cgi interfaces"
  30. select BR2_PACKAGE_PHP_CLI
  31. select BR2_PACKAGE_PHP_CGI
  32. help
  33. Command line and CGI interfaces for PHP.
  34. endchoice
  35. config BR2_PACKAGE_PHP_FASTCGI
  36. bool "fastcgi"
  37. depends on BR2_PACKAGE_PHP_CGI
  38. default y
  39. help
  40. fast cgi interface for php
  41. source "package/php/Config.ext"
  42. endif