summaryrefslogtreecommitdiffstats
path: root/package/php4/Config.in
blob: 434b1f341c7be3dca9283d3d874d5fcaae6cb1e9 (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
menu "php4.............................. PHP4 Hypertext preprocessor"

config BR2_COMPILE_PHP4
	bool
	default y
	depends BR2_PACKAGE_PHP4_CLI || BR2_PACKAGE_PHP4_CGI || BR2_PACKAGE_PHP4_FASTCGI
	 
comment "Server API ---"

config BR2_PACKAGE_PHP4_CLI
	prompt "php4-cli.......................... PHP4 CLI (Command Line Interface)"
	tristate 
	default m if CONFIG_DEVEL
	select BR2_COMPILE_PHP4
	select BR2_PACKAGE_LIBOPENSSL
	select BR2_PACKAGE_ZLIB
	help
	 PHP is a widely-used general-purpose scripting language that is especially 
	 suited for Web development and can be embedded into HTML.
	 
	 http://www.php.net/

config BR2_PACKAGE_PHP4_CGI
	prompt "php4-cgi.......................... PHP4 built for CGI"
	tristate 
	default m if CONFIG_DEVEL
	select BR2_COMPILE_PHP4
	select BR2_PACKAGE_LIBOPENSSL
	select BR2_PACKAGE_ZLIB
	help
	 PHP is a widely-used general-purpose scripting language that is especially 
	 suited for Web development and can be embedded into HTML.
	 
	 http://www.php.net/

config BR2_PACKAGE_PHP4_FASTCGI
	prompt "php4-fastcgi...................... PHP4 built for FastCGI"
	tristate 
	default m if CONFIG_DEVEL
	select BR2_COMPILE_PHP4
	select BR2_PACKAGE_LIBOPENSSL
	select BR2_PACKAGE_ZLIB
	help
	 PHP is a widely-used general-purpose scripting language that is especially 
	 suited for Web development and can be embedded into HTML.
	 
	 http://www.php.net/

comment "Extensions ---"

config BR2_PACKAGE_PHP4_MOD_CURL
	prompt "php4-mod-curl..................... cURL module"
	tristate 
	default m if CONFIG_DEVEL
	depends BR2_COMPILE_PHP4
	select BR2_PACKAGE_LIBCURL

config BR2_PACKAGE_PHP4_MOD_FTP
	prompt "php4-mod-ftp...................... FTP module"
	tristate 
	default m if CONFIG_DEVEL
	depends BR2_COMPILE_PHP4

config BR2_PACKAGE_PHP4_MOD_GD
	prompt "php4-mod-gd....................... GD graphics library module"
	tristate 
	default m if CONFIG_DEVEL
	depends BR2_COMPILE_PHP4
	select BR2_PACKAGE_LIBGD
	select BR2_PACKAGE_LIBPNG

config BR2_PACKAGE_PHP4_MOD_GMP
	prompt "php4-mod-gmp...................... GMP module"
	tristate 
	default m if CONFIG_DEVEL
	depends BR2_COMPILE_PHP4
	select BR2_PACKAGE_LIBGMP

config BR2_PACKAGE_PHP4_MOD_LDAP
	prompt "php4-mod-ldap..................... LDAP module"
	tristate 
	default m if CONFIG_DEVEL
	depends BR2_COMPILE_PHP4
	select BR2_PACKAGE_LIBOPENLDAP

config BR2_PACKAGE_PHP4_MOD_MYSQL
	prompt "php4-mod-mysql.................... MySQL module"
	tristate 
	default m if CONFIG_DEVEL
	depends BR2_COMPILE_PHP4
	select BR2_PACKAGE_LIBMYSQLCLIENT

config BR2_PACKAGE_PHP4_MOD_OPENSSL
	prompt "php4-mod-openssl.................. OpenSSL module"
	tristate 
	default m if CONFIG_DEVEL
	depends BR2_COMPILE_PHP4
	select BR2_PACKAGE_LIBOPENSSL

config BR2_PACKAGE_PHP4_MOD_PCRE
	prompt "php4-mod-pcre..................... PCRE module"
	tristate 
	default m if CONFIG_DEVEL
	depends BR2_COMPILE_PHP4
	select BR2_PACKAGE_LIBPCRE

config BR2_PACKAGE_PHP4_MOD_PGSQL
	prompt "php4-mod-pgsql.................... PostgreSQL module"
	tristate 
	default m if CONFIG_DEVEL
	depends BR2_COMPILE_PHP4
	select BR2_PACKAGE_LIBPQ

config BR2_PACKAGE_PHP4_MOD_SESSION
	prompt "php4-mod-session.................. Sessions module"
	tristate 
	default m if CONFIG_DEVEL
	depends BR2_COMPILE_PHP4

config BR2_PACKAGE_PHP4_MOD_SQLITE
	prompt "php4-mod-sqlite................... SQLite module"
	tristate 
	default m if CONFIG_DEVEL
	depends BR2_COMPILE_PHP4
	select BR2_PACKAGE_LIBSQLITE2

config BR2_PACKAGE_PHP4_MOD_SOCKETS
	prompt "php4-mod-sockets.................. Sockets module"
	tristate 
	default m if CONFIG_DEVEL
	depends BR2_COMPILE_PHP4

config BR2_PACKAGE_PHP4_MOD_XML
	prompt "php4-mod-xml...................... XML module"
	tristate 
	default m if CONFIG_DEVEL
	depends BR2_COMPILE_PHP4
	select BR2_PACKAGE_LIBEXPAT

endmenu