Config.in 891 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. source "package/php/Config.ext"
  10. config BR2_PACKAGE_PHP_CLI
  11. bool
  12. config BR2_PACKAGE_PHP_CGI
  13. bool
  14. choice
  15. prompt "Interface"
  16. default BR2_PACKAGE_PHP_SAPI_CGI
  17. help
  18. Select the PHP interface(s).
  19. config BR2_PACKAGE_PHP_SAPI_CGI
  20. bool "CGI"
  21. select BR2_PACKAGE_PHP_CGI
  22. help
  23. Common Gateway Interface
  24. config BR2_PACKAGE_PHP_SAPI_CLI
  25. bool "CLI"
  26. select BR2_PACKAGE_PHP_CLI
  27. help
  28. Command Line Interface
  29. config BR2_PACKAGE_PHP_SAPI_CLI_CGI
  30. bool "CGI and CLI"
  31. select BR2_PACKAGE_PHP_CLI
  32. select BR2_PACKAGE_PHP_CGI
  33. help
  34. Command line and Common gateway interfaces
  35. endchoice
  36. endif