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

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

config BR2_PACKAGE_PHP4_CLI
	prompt "...-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 "...-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 "...-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_FTP
	prompt "...-mod-ftp - FTP module"
	tristate 
#	default m if CONFIG_DEVEL
	depends BR2_COMPILE_PHP4

config BR2_PACKAGE_PHP4_MOD_GD
	prompt "...-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_LDAP
	prompt "...-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 "...-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 "...-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 "...-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 "...-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 "...-mod-session - Sessions module"
	tristate 
#	default m if CONFIG_DEVEL
	depends BR2_COMPILE_PHP4

config BR2_PACKAGE_PHP4_MOD_SQLITE
	prompt "...-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 "...-mod-sockets - Sockets module"
	tristate 
#	default m if CONFIG_DEVEL
	depends BR2_COMPILE_PHP4

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

endmenu