Config.in 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. config BR2_PACKAGE_PHP_FPM
  14. bool
  15. choice
  16. prompt "Interface"
  17. default BR2_PACKAGE_PHP_SAPI_CGI
  18. help
  19. Select the PHP interface(s).
  20. config BR2_PACKAGE_PHP_SAPI_CGI
  21. bool "CGI"
  22. # CGI uses fork()
  23. depends on BR2_USE_MMU
  24. select BR2_PACKAGE_PHP_CGI
  25. help
  26. Common Gateway Interface
  27. config BR2_PACKAGE_PHP_SAPI_CLI
  28. bool "CLI"
  29. select BR2_PACKAGE_PHP_CLI
  30. help
  31. Command Line Interface
  32. config BR2_PACKAGE_PHP_SAPI_FPM
  33. bool "FPM"
  34. depends on BR2_USE_MMU
  35. select BR2_PACKAGE_PHP_FPM
  36. help
  37. PHP-FPM (FastCGI Process Manager)
  38. config BR2_PACKAGE_PHP_SAPI_CLI_CGI
  39. bool "CGI and CLI"
  40. # CGI uses fork()
  41. depends on BR2_USE_MMU
  42. select BR2_PACKAGE_PHP_CLI
  43. select BR2_PACKAGE_PHP_CGI
  44. help
  45. Command line and Common gateway interfaces
  46. config BR2_PACKAGE_PHP_SAPI_CLI_FPM
  47. bool "FPM and CLI"
  48. depends on BR2_USE_MMU
  49. select BR2_PACKAGE_PHP_CLI
  50. select BR2_PACKAGE_PHP_FPM
  51. help
  52. Command line and PHP-FPM (FastCGI Process Manager)
  53. endchoice
  54. source "package/php/Config.ext"
  55. endif