blob: 6ec6f6b29e30f8de7bf9435276d8f8edac3193f3 [file] [log] [blame]
John Voltz70597682008-03-06 18:21:33 +00001menu "PHP Extensions"
2
3config BR2_PACKAGE_PHP_EXT_SOCKETS
4 bool "socket"
5 depends on BR2_PACKAGE_PHP
6 default n
7 help
8 Sockets support
9
10config BR2_PACKAGE_PHP_EXT_POSIX
11 bool "posix"
12 depends on BR2_PACKAGE_PHP
13 default y
14 help
15 POSIX support
16
17config BR2_PACKAGE_PHP_EXT_SPL
18 bool "SPL"
19 depends on BR2_PACKAGE_PHP
20 default y
21 help
22 SPL support
23
24config BR2_PACKAGE_PHP_EXT_SESSION
25 bool "Session"
26 depends on BR2_PACKAGE_PHP
27 default y
28 help
29 Session support
30
31config BR2_PACKAGE_PHP_EXT_OPENSSL
Arnar Mar Sigurðsson4d953ef2008-06-01 18:04:13 +000032 bool "openssl"
33 depends on BR2_PACKAGE_PHP && BR2_PACKAGE_OPENSSL
34 default n
35 help
36 openssl support
John Voltz70597682008-03-06 18:21:33 +000037
38config BR2_PACKAGE_PHP_EXT_LIBXML2
Arnar Mar Sigurðsson4d953ef2008-06-01 18:04:13 +000039 bool "xml2"
40 depends on BR2_PACKAGE_PHP && BR2_PACKAGE_LIBXML2
41 default y
42 help
43 xml support
44
45config BR2_PACKAGE_PHP_EXT_SIMPLEXML
46 bool "simplexml"
47 depends on BR2_PACKAGE_PHP
Peter Korsgaard4cd1ceb2008-06-16 09:49:47 +000048 select BR2_PACKAGE_PHP_EXT_LIBXML2
Arnar Mar Sigurðsson4d953ef2008-06-01 18:04:13 +000049 help
50 SimpleXML support
John Voltz70597682008-03-06 18:21:33 +000051
52config BR2_PACKAGE_PHP_EXT_ZLIB
53 bool "zlib"
54 depends on BR2_PACKAGE_PHP && BR2_PACKAGE_ZLIB
55 default y
56 help
57 zlib support
58
59config BR2_PACKAGE_PHP_EXT_EXIF
60 bool "EXIF"
61 depends on BR2_PACKAGE_PHP
62 default n
63 help
64 EXIF support
65
66config BR2_PACKAGE_PHP_EXT_FTP
67 bool "FTP"
68 depends on BR2_PACKAGE_PHP
69 default n
70 help
71 FTP Support
72
73config BR2_PACKAGE_PHP_EXT_GETTEXT
74 bool "gettext"
75 depends on BR2_PACKAGE_PHP && BR2_PACKAGE_GETTEXT
76 default n
77 help
78 gettext support
79
80config BR2_PACKAGE_PHP_EXT_GMP
81 bool "gmp"
82 depends on BR2_PACKAGE_PHP && BR2_PACKAGE_LIBGMP
83 default n
84 help
85 GMP support
86
87config BR2_PACKAGE_PHP_EXT_JSON
88 bool "JSON"
89 depends on BR2_PACKAGE_PHP
90 default n
91 help
92 JSON support
93
94config BR2_PACKAGE_PHP_EXT_READLINE
95 bool "readline"
96 depends on BR2_PACKAGE_PHP && (BR2_PACKAGE_PHP_CLI || BR2_PACKAGE_PHP_CGI) && BR2_READLINE
97 default n
98 help
99 readline support
100
101config BR2_PACKAGE_PHP_EXT_NCURSES
102 bool "ncurses"
103 depends on BR2_PACKAGE_PHP && (BR2_PACKAGE_PHP_CLI || BR2_PACKAGE_PHP_CGI) && BR2_PACKAGE_NCURSES
104 default n
105 help
106 ncurses support
107
108config BR2_PACKAGE_PHP_EXT_SYSVMSG
109 bool "sysvmsg - System V Message queue"
110 depends on BR2_PACKAGE_PHP
111 default n
112 help
113 System V Message queue support
114
115config BR2_PACKAGE_PHP_EXT_SYSVSEM
116 bool "sysvsem - System V Semaphores"
117 depends on BR2_PACKAGE_PHP
118 default n
119 help
120 System V Sempahore support
121
122config BR2_PACKAGE_PHP_EXT_SYSVSHM
123 bool "sysvshm - System V Shared memory"
124 depends on BR2_PACKAGE_PHP
125 default n
126 help
127 System V Shared memory support
128
129config BR2_PACKAGE_PHP_EXT_ZIP
130 bool "zip"
131 depends on BR2_PACKAGE_PHP
132 default n
133 help
134 Zip Support
135
136config BR2_PACKAGE_PHP_EXT_FILTER
137 bool "filter"
138 depends on BR2_PACKAGE_PHP
139 default n
140 help
141 Input filter support
142
143comment "Database extensions"
144
145config BR2_PACKAGE_PHP_EXT_SQLITE
146 bool "sqlite"
147 depends on BR2_PACKAGE_PHP
Arnar Mar Sigurðssona9aa94d2008-06-01 19:42:14 +0000148 select BR2_PACKAGE_SQLITE
John Voltz70597682008-03-06 18:21:33 +0000149 default y
150 help
151 SQLite
152
153config BR2_PACKAGE_PHP_EXT_SQLITE_UTF8
154 bool "sqlite UTF8 support"
155 depends on BR2_PACKAGE_PHP && BR2_PACKAGE_PHP_EXT_SQLITE
156 default n
157 help
158 UTF8 Support for sqlite
159
160config BR2_PACKAGE_PHP_EXT_PDO
161 bool "PDO"
162 depends on BR2_PACKAGE_PHP
163 default y
164 help
165 PDO support
166
167config BR2_PACKAGE_PHP_EXT_PDO_SQLITE
168 bool "PDO_SQLite"
169 depends on BR2_PACKAGE_PHP && BR2_PACKAGE_PHP_EXT_PDO
170 default y
171 help
172 SQLite support for PDO
173
174config BR2_PACKAGE_PHP_EXT_PDO_MYSQL
175 bool "PDO_MySQL"
176 depends on BR2_PACKAGE_PHP && BR2_PACKAGE_PHP_EXT_PDO
Arnar Mar Sigurðssona9aa94d2008-06-01 19:42:14 +0000177 select BR2_PACKAGE_MYSQL_CLIENT
John Voltz70597682008-03-06 18:21:33 +0000178 default n
179 help
180 MySQL support for PDO
181
182endmenu