Config.ext 7.3 KB

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