summaryrefslogtreecommitdiffstats
path: root/package/php/Config.ext
blob: f25c9372945e1ed23185c1f66d9273af8eb3ba18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
menu "PHP Extensions"

config BR2_PACKAGE_PHP_EXT_SOCKETS
	bool "socket"
	depends on BR2_PACKAGE_PHP
	help
	  Sockets support

config BR2_PACKAGE_PHP_EXT_POSIX
	bool "posix"
	depends on BR2_PACKAGE_PHP
	default y
	help
	  POSIX support

config BR2_PACKAGE_PHP_EXT_SPL
	bool "SPL"
	depends on BR2_PACKAGE_PHP
	default y
	help
	  SPL support

config BR2_PACKAGE_PHP_EXT_SESSION
	bool "Session"
	depends on BR2_PACKAGE_PHP
	default y
	help
	  Session support

config BR2_PACKAGE_PHP_EXT_OPENSSL
	bool "openssl"
	depends on BR2_PACKAGE_PHP && BR2_PACKAGE_OPENSSL
	help
	  openssl support

config BR2_PACKAGE_PHP_EXT_LIBXML2
	bool "xml2"
	depends on BR2_PACKAGE_PHP && BR2_PACKAGE_LIBXML2
	default y
	help
	  xml support

config BR2_PACKAGE_PHP_EXT_SIMPLEXML
	bool "simplexml"
	depends on BR2_PACKAGE_PHP
	select BR2_PACKAGE_PHP_EXT_LIBXML2
	help
	  SimpleXML support

config BR2_PACKAGE_PHP_EXT_ZLIB
        bool "zlib"
        depends on BR2_PACKAGE_PHP && BR2_PACKAGE_ZLIB
        default y
        help
          zlib support

config BR2_PACKAGE_PHP_EXT_EXIF
	bool "EXIF"
	depends on BR2_PACKAGE_PHP
	help
	  EXIF support

config BR2_PACKAGE_PHP_EXT_FTP
	bool "FTP"
	depends on BR2_PACKAGE_PHP
	help
	  FTP Support

config BR2_PACKAGE_PHP_EXT_GETTEXT
	bool "gettext"
	depends on BR2_PACKAGE_PHP && BR2_PACKAGE_GETTEXT
	help
	  gettext support

config BR2_PACKAGE_PHP_EXT_GMP
	bool "gmp"
	depends on BR2_PACKAGE_PHP && BR2_PACKAGE_LIBGMP
	help
	  GMP support

config BR2_PACKAGE_PHP_EXT_JSON
	bool "JSON"
	depends on BR2_PACKAGE_PHP
	help
	  JSON support

config BR2_PACKAGE_PHP_EXT_READLINE
	bool "readline"
	depends on BR2_PACKAGE_PHP && (BR2_PACKAGE_PHP_CLI || BR2_PACKAGE_PHP_CGI) && BR2_READLINE
	help
	  readline support

config BR2_PACKAGE_PHP_EXT_NCURSES
	bool "ncurses"
	depends on BR2_PACKAGE_PHP && (BR2_PACKAGE_PHP_CLI || BR2_PACKAGE_PHP_CGI) && BR2_PACKAGE_NCURSES
	help
	  ncurses support

config BR2_PACKAGE_PHP_EXT_SYSVMSG
	bool "sysvmsg - System V Message queue"
	depends on BR2_PACKAGE_PHP
	help
	  System V Message queue support

config BR2_PACKAGE_PHP_EXT_SYSVSEM
	bool "sysvsem - System V Semaphores"
	depends on BR2_PACKAGE_PHP
	help
	  System V Sempahore support

config BR2_PACKAGE_PHP_EXT_SYSVSHM
	bool "sysvshm - System V Shared memory"
	depends on BR2_PACKAGE_PHP
	help
	  System V Shared memory support

config BR2_PACKAGE_PHP_EXT_ZIP
	bool "zip"
	depends on BR2_PACKAGE_PHP
	help
	  Zip Support

config BR2_PACKAGE_PHP_EXT_FILTER
	bool "filter"
	depends on BR2_PACKAGE_PHP
	help
	  Input filter support

comment "Database extensions"

config BR2_PACKAGE_PHP_EXT_SQLITE
	bool "sqlite"
	depends on BR2_PACKAGE_PHP
	select BR2_PACKAGE_SQLITE
	default y
	help
	  SQLite

config BR2_PACKAGE_PHP_EXT_SQLITE_UTF8
	bool "sqlite UTF8 support"
	depends on BR2_PACKAGE_PHP && BR2_PACKAGE_PHP_EXT_SQLITE
	help
	  UTF8 Support for sqlite

config BR2_PACKAGE_PHP_EXT_PDO
	bool "PDO"
	depends on BR2_PACKAGE_PHP
	default y
	help
	  PDO support

config BR2_PACKAGE_PHP_EXT_PDO_SQLITE
	bool "PDO_SQLite"
	depends on BR2_PACKAGE_PHP && BR2_PACKAGE_PHP_EXT_PDO
	default y
	help
	  SQLite support for PDO

config BR2_PACKAGE_PHP_EXT_PDO_MYSQL
	bool "PDO_MySQL"
	depends on BR2_PACKAGE_PHP && BR2_PACKAGE_PHP_EXT_PDO
	select BR2_PACKAGE_MYSQL_CLIENT
	help
	  MySQL support for PDO

endmenu