Config.ext 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. menu "Extensions"
  2. config BR2_PACKAGE_PHP_EXT_CALENDAR
  3. bool "Calendar"
  4. help
  5. Calendar and event support
  6. config BR2_PACKAGE_PHP_EXT_FILEINFO
  7. bool "Fileinfo"
  8. help
  9. File Information support
  10. config BR2_PACKAGE_PHP_EXT_READLINE
  11. bool "Readline"
  12. select BR2_PACKAGE_NCURSES
  13. select BR2_PACKAGE_READLINE
  14. help
  15. Readline support
  16. config BR2_PACKAGE_PHP_EXT_SESSION
  17. bool "Session"
  18. default y
  19. help
  20. Session support
  21. comment "Compression extensions"
  22. config BR2_PACKAGE_PHP_EXT_BZIP2
  23. bool "bzip2"
  24. select BR2_PACKAGE_BZIP2
  25. help
  26. bzip2 read/write support
  27. config BR2_PACKAGE_PHP_EXT_ZIP
  28. bool "zip"
  29. select BR2_PACKAGE_ZLIB
  30. help
  31. Zip read/write support
  32. config BR2_PACKAGE_PHP_EXT_ZLIB
  33. bool "zlib"
  34. select BR2_PACKAGE_ZLIB
  35. default y
  36. help
  37. zlib support
  38. comment "Cryptography extensions"
  39. config BR2_PACKAGE_PHP_EXT_HASH
  40. bool "hash"
  41. help
  42. HASH message digest framework
  43. config BR2_PACKAGE_PHP_EXT_OPENSSL
  44. bool "openssl"
  45. select BR2_PACKAGE_OPENSSL
  46. help
  47. openssl support
  48. comment "Database extensions"
  49. config BR2_PACKAGE_PHP_EXT_DBA
  50. bool "DBA"
  51. help
  52. Database Abstraction Layer
  53. if BR2_PACKAGE_PHP_EXT_DBA
  54. config BR2_PACKAGE_PHP_EXT_DBA_CDB
  55. bool "cdb"
  56. help
  57. CDB handler
  58. config BR2_PACKAGE_PHP_EXT_DBA_DB4
  59. bool "db4/5"
  60. select BR2_PACKAGE_BERKELEYDB
  61. help
  62. BerkeleyDB version 4/5 handler
  63. config BR2_PACKAGE_PHP_EXT_DBA_FLAT
  64. bool "flat"
  65. default y
  66. help
  67. Flat file handler
  68. config BR2_PACKAGE_PHP_EXT_DBA_INI
  69. bool "ini"
  70. default y
  71. help
  72. INI file handler
  73. endif
  74. config BR2_PACKAGE_PHP_EXT_MYSQL
  75. bool "Mysql"
  76. depends on BR2_INSTALL_LIBSTDCPP
  77. depends on BR2_USE_MMU # mysql
  78. depends on BR2_TOOLCHAIN_HAS_THREADS # mysql
  79. select BR2_PACKAGE_MYSQL
  80. help
  81. MySQL support
  82. config BR2_PACKAGE_PHP_EXT_MYSQLI
  83. bool "Mysqli"
  84. depends on BR2_INSTALL_LIBSTDCPP
  85. depends on BR2_USE_MMU # mysql
  86. depends on BR2_TOOLCHAIN_HAS_THREADS # mysql
  87. select BR2_PACKAGE_MYSQL
  88. select BR2_PACKAGE_PHP_EXT_MYSQL
  89. help
  90. MySQL Improved extension support
  91. config BR2_PACKAGE_PHP_EXT_PDO
  92. bool "PDO"
  93. help
  94. PHP Data Objects support
  95. if BR2_PACKAGE_PHP_EXT_PDO
  96. config BR2_PACKAGE_PHP_EXT_PDO_MYSQL
  97. bool "MySQL"
  98. depends on BR2_INSTALL_LIBSTDCPP
  99. depends on BR2_USE_MMU # mysql
  100. depends on BR2_TOOLCHAIN_HAS_THREADS # mysql
  101. select BR2_PACKAGE_MYSQL
  102. help
  103. PDO driver for MySQL
  104. comment "MySQL drivers need a toolchain w/ C++"
  105. depends on BR2_USE_MMU
  106. depends on !BR2_INSTALL_LIBSTDCPP
  107. config BR2_PACKAGE_PHP_EXT_PDO_SQLITE
  108. bool "SQLite3"
  109. select BR2_PACKAGE_SQLITE
  110. help
  111. SQLite3 driver for PDO
  112. endif
  113. comment "Human language and character encoding support"
  114. config BR2_PACKAGE_PHP_EXT_GETTEXT
  115. bool "Gettext"
  116. select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT
  117. depends on BR2_USE_WCHAR
  118. help
  119. Gettext support
  120. comment "Gettext support needs a toolchain w/ wchar"
  121. depends on !BR2_USE_WCHAR
  122. config BR2_PACKAGE_PHP_EXT_ICONV
  123. bool "iconv"
  124. select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
  125. help
  126. iconv character set conversion support
  127. config BR2_PACKAGE_PHP_EXT_INTL
  128. bool "intl"
  129. select BR2_PACKAGE_ICU
  130. depends on BR2_INSTALL_LIBSTDCPP
  131. depends on BR2_USE_WCHAR
  132. depends on !BR2_arc # icu -> atomic builtins
  133. depends on !BR2_BINFMT_FLAT # icu
  134. help
  135. Internationalization support
  136. comment "intl support needs a toolchain w/ C++, wchar"
  137. depends on !BR2_arc
  138. depends on !BR2_BINFMT_FLAT
  139. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR
  140. comment "Image processing"
  141. config BR2_PACKAGE_PHP_EXT_EXIF
  142. bool "EXIF"
  143. help
  144. EXIF support
  145. comment "Mathematical extensions"
  146. config BR2_PACKAGE_PHP_EXT_BCMATH
  147. bool "BC math"
  148. help
  149. BCMath arbitrary precision mathematics support
  150. config BR2_PACKAGE_PHP_EXT_GMP
  151. bool "GMP"
  152. select BR2_PACKAGE_GMP
  153. help
  154. GNU Multiple Precision support
  155. comment "Other basic extensions"
  156. config BR2_PACKAGE_PHP_EXT_JSON
  157. bool "JSON"
  158. help
  159. JavaScript Object Serialization support
  160. config BR2_PACKAGE_PHP_EXT_TOKENIZER
  161. bool "Tokenizer"
  162. help
  163. Tokenizer functions support
  164. comment "Other services"
  165. config BR2_PACKAGE_PHP_EXT_CURL
  166. bool "cURL"
  167. select BR2_PACKAGE_LIBCURL
  168. help
  169. cURL for URL streams
  170. config BR2_PACKAGE_PHP_EXT_FTP
  171. bool "FTP"
  172. help
  173. FTP support
  174. config BR2_PACKAGE_PHP_EXT_SNMP
  175. bool "SNMP"
  176. depends on BR2_USE_MMU # netsnmp fork()
  177. select BR2_PACKAGE_NETSNMP
  178. select BR2_PACKAGE_NETSNMP_ENABLE_MIBS
  179. help
  180. SNMP support
  181. config BR2_PACKAGE_PHP_EXT_SOCKETS
  182. bool "sockets"
  183. depends on BR2_INET_IPV6
  184. help
  185. Sockets support
  186. comment "sockets support needs a toolchain w/ IPv6"
  187. depends on !BR2_INET_IPV6
  188. comment "Process Control"
  189. config BR2_PACKAGE_PHP_EXT_PCNTL
  190. bool "PCNTL"
  191. depends on BR2_USE_MMU # fork()
  192. help
  193. Process control support
  194. config BR2_PACKAGE_PHP_EXT_POSIX
  195. bool "Posix"
  196. default y
  197. help
  198. POSIX.1 (IEEE 1003.1) function support
  199. config BR2_PACKAGE_PHP_EXT_SHMOP
  200. bool "shmop"
  201. help
  202. Shared memory support
  203. config BR2_PACKAGE_PHP_EXT_SYSVMSG
  204. bool "sysvmsg"
  205. help
  206. System V message queue support
  207. config BR2_PACKAGE_PHP_EXT_SYSVSEM
  208. bool "sysvsem"
  209. help
  210. System V semaphore support
  211. config BR2_PACKAGE_PHP_EXT_SYSVSHM
  212. bool "sysvshm"
  213. help
  214. System V shared memory support
  215. comment "Variable and Type related"
  216. config BR2_PACKAGE_PHP_EXT_CTYPE
  217. bool "Ctype"
  218. help
  219. Character type checking support
  220. config BR2_PACKAGE_PHP_EXT_FILTER
  221. bool "Filter"
  222. help
  223. Input filter support
  224. comment "Web services"
  225. config BR2_PACKAGE_PHP_EXT_SOAP
  226. bool "SOAP"
  227. select BR2_PACKAGE_PHP_EXT_LIBXML2
  228. help
  229. SOAP support
  230. config BR2_PACKAGE_PHP_EXT_XMLRPC
  231. bool "XML-RPC"
  232. select BR2_PACKAGE_PHP_EXT_LIBXML2
  233. select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
  234. help
  235. XML-RPC support
  236. comment "XML manipulation"
  237. config BR2_PACKAGE_PHP_EXT_DOM
  238. bool "DOM"
  239. select BR2_PACKAGE_PHP_EXT_LIBXML2
  240. help
  241. Document Object Model support
  242. config BR2_PACKAGE_PHP_EXT_LIBXML2
  243. bool "libxml"
  244. select BR2_PACKAGE_LIBXML2
  245. help
  246. libxml2 support
  247. config BR2_PACKAGE_PHP_EXT_SIMPLEXML
  248. bool "SimpleXML"
  249. select BR2_PACKAGE_PHP_EXT_LIBXML2
  250. help
  251. SimpleXML support
  252. config BR2_PACKAGE_PHP_EXT_WDDX
  253. bool "WDDX"
  254. select BR2_PACKAGE_EXPAT
  255. select BR2_PACKAGE_PHP_EXT_LIBXML2
  256. help
  257. WDDX support
  258. config BR2_PACKAGE_PHP_EXT_XML
  259. bool "XML Parser"
  260. select BR2_PACKAGE_PHP_EXT_LIBXML2
  261. help
  262. XML Parser support
  263. config BR2_PACKAGE_PHP_EXT_XMLREADER
  264. bool "XMLReader"
  265. select BR2_PACKAGE_PHP_EXT_LIBXML2
  266. help
  267. XMLReader support
  268. config BR2_PACKAGE_PHP_EXT_XMLWRITER
  269. bool "XMLWriter"
  270. select BR2_PACKAGE_PHP_EXT_LIBXML2
  271. help
  272. XMLWriter support
  273. config BR2_PACKAGE_PHP_EXT_XSL
  274. bool "XSL"
  275. select BR2_PACKAGE_PHP_EXT_DOM
  276. select BR2_PACKAGE_PHP_EXT_LIBXML2
  277. select BR2_PACKAGE_LIBXSLT
  278. help
  279. XSL transformation support
  280. endmenu