Config.in 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. config BR2_PACKAGE_PHP56
  2. bool "php56"
  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_PHP56
  9. source "../PSG/package/php56/Config.ext"
  10. config BR2_PACKAGE_PHP56_CLI
  11. bool
  12. config BR2_PACKAGE_PHP56_CGI
  13. bool
  14. config BR2_PACKAGE_PHP56_FPM
  15. bool
  16. choice
  17. prompt "Interface"
  18. default BR2_PACKAGE_PHP56_SAPI_CGI
  19. help
  20. Select the PHP interface(s).
  21. config BR2_PACKAGE_PHP56_SAPI_CGI
  22. bool "CGI"
  23. # CGI uses fork()
  24. depends on BR2_USE_MMU
  25. select BR2_PACKAGE_PHP56_CGI
  26. help
  27. Common Gateway Interface
  28. config BR2_PACKAGE_PHP56_SAPI_CLI
  29. bool "CLI"
  30. select BR2_PACKAGE_PHP56_CLI
  31. help
  32. Command Line Interface
  33. config BR2_PACKAGE_PHP56_SAPI_FPM
  34. bool "FPM"
  35. depends on BR2_USE_MMU
  36. select BR2_PACKAGE_PHP56_FPM
  37. help
  38. PHP-FPM (FastCGI Process Manager)
  39. config BR2_PACKAGE_PHP56_SAPI_CLI_CGI
  40. bool "CGI and CLI"
  41. # CGI uses fork()
  42. depends on BR2_USE_MMU
  43. select BR2_PACKAGE_PHP56_CLI
  44. select BR2_PACKAGE_PHP56_CGI
  45. help
  46. Command line and Common gateway interfaces
  47. config BR2_PACKAGE_PHP56_SAPI_CLI_FPM
  48. bool "FPM and CLI"
  49. depends on BR2_USE_MMU
  50. select BR2_PACKAGE_PHP56_CLI
  51. select BR2_PACKAGE_PHP56_FPM
  52. help
  53. Command line and PHP-FPM (FastCGI Process Manager)
  54. endchoice
  55. endif