Config.ext 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. menu "PHP Extensions"
  2. config BR2_PACKAGE_PHP_EXT_SOCKETS
  3. bool "socket"
  4. help
  5. Sockets support
  6. config BR2_PACKAGE_PHP_EXT_POSIX
  7. bool "posix"
  8. default y
  9. help
  10. POSIX support
  11. config BR2_PACKAGE_PHP_EXT_SPL
  12. bool "SPL"
  13. default y
  14. help
  15. SPL support
  16. config BR2_PACKAGE_PHP_EXT_SESSION
  17. bool "Session"
  18. default y
  19. help
  20. Session support
  21. config BR2_PACKAGE_PHP_EXT_OPENSSL
  22. bool "openssl"
  23. depends on BR2_PACKAGE_OPENSSL
  24. help
  25. openssl support
  26. config BR2_PACKAGE_PHP_EXT_LIBXML2
  27. bool "xml2"
  28. depends on BR2_PACKAGE_LIBXML2
  29. default y
  30. help
  31. xml support
  32. config BR2_PACKAGE_PHP_EXT_SIMPLEXML
  33. bool "simplexml"
  34. select BR2_PACKAGE_PHP_EXT_LIBXML2
  35. help
  36. SimpleXML support
  37. config BR2_PACKAGE_PHP_EXT_ZLIB
  38. bool "zlib"
  39. depends on BR2_PACKAGE_ZLIB
  40. default y
  41. help
  42. zlib support
  43. config BR2_PACKAGE_PHP_EXT_EXIF
  44. bool "EXIF"
  45. depends on BR2_PACKAGE_PHP
  46. help
  47. EXIF support
  48. config BR2_PACKAGE_PHP_EXT_FTP
  49. bool "FTP"
  50. depends on BR2_PACKAGE_PHP
  51. help
  52. FTP Support
  53. config BR2_PACKAGE_PHP_EXT_GETTEXT
  54. bool "gettext"
  55. depends on BR2_PACKAGE_PHP && BR2_PACKAGE_GETTEXT
  56. help
  57. gettext support
  58. config BR2_PACKAGE_PHP_EXT_GMP
  59. bool "gmp"
  60. depends on BR2_PACKAGE_PHP && BR2_PACKAGE_LIBGMP
  61. help
  62. GMP support
  63. config BR2_PACKAGE_PHP_EXT_JSON
  64. bool "JSON"
  65. depends on BR2_PACKAGE_PHP
  66. help
  67. JSON support
  68. config BR2_PACKAGE_PHP_EXT_READLINE
  69. bool "readline"
  70. depends on BR2_PACKAGE_PHP && (BR2_PACKAGE_PHP_CLI || BR2_PACKAGE_PHP_CGI) && BR2_PACKAGE_READLINE
  71. help
  72. readline support
  73. config BR2_PACKAGE_PHP_EXT_NCURSES
  74. bool "ncurses"
  75. depends on BR2_PACKAGE_PHP && (BR2_PACKAGE_PHP_CLI || BR2_PACKAGE_PHP_CGI) && BR2_PACKAGE_NCURSES
  76. help
  77. ncurses support
  78. config BR2_PACKAGE_PHP_EXT_SYSVMSG
  79. bool "sysvmsg - System V Message queue"
  80. depends on BR2_PACKAGE_PHP
  81. help
  82. System V Message queue support
  83. config BR2_PACKAGE_PHP_EXT_SYSVSEM
  84. bool "sysvsem - System V Semaphores"
  85. depends on BR2_PACKAGE_PHP
  86. help
  87. System V Sempahore support
  88. config BR2_PACKAGE_PHP_EXT_SYSVSHM
  89. bool "sysvshm - System V Shared memory"
  90. depends on BR2_PACKAGE_PHP
  91. help
  92. System V Shared memory support
  93. config BR2_PACKAGE_PHP_EXT_ZIP
  94. bool "zip"
  95. depends on BR2_PACKAGE_PHP
  96. help
  97. Zip Support
  98. config BR2_PACKAGE_PHP_EXT_FILTER
  99. bool "filter"
  100. depends on BR2_PACKAGE_PHP
  101. help
  102. Input filter support
  103. comment "Database extensions"
  104. config BR2_PACKAGE_PHP_EXT_SQLITE
  105. bool "sqlite"
  106. depends on BR2_PACKAGE_PHP
  107. default y
  108. help
  109. SQLite
  110. config BR2_PACKAGE_PHP_EXT_SQLITE_UTF8
  111. bool "sqlite UTF8 support"
  112. depends on BR2_PACKAGE_PHP && BR2_PACKAGE_PHP_EXT_SQLITE
  113. help
  114. UTF8 Support for sqlite
  115. config BR2_PACKAGE_PHP_EXT_PDO
  116. bool "PDO"
  117. depends on BR2_PACKAGE_PHP
  118. default y
  119. help
  120. PDO support
  121. config BR2_PACKAGE_PHP_EXT_PDO_SQLITE
  122. bool "PDO_SQLite"
  123. depends on BR2_PACKAGE_PHP && BR2_PACKAGE_PHP_EXT_PDO
  124. default y
  125. help
  126. SQLite support for PDO
  127. config BR2_PACKAGE_PHP_EXT_PDO_MYSQL
  128. bool "PDO_MySQL"
  129. depends on BR2_PACKAGE_PHP && BR2_PACKAGE_PHP_EXT_PDO
  130. select BR2_PACKAGE_MYSQL_CLIENT
  131. help
  132. MySQL support for PDO
  133. endmenu