source: freewrt/package/php4/Config.in@ 5dcdc822

Last change on this file since 5dcdc822 was a89c642, checked in by Thorsten Glaser <tg@…>, 19 years ago

fix a few select stmts, my bad

git-svn-id: svn://www.freewrt.org/trunk/freewrt@2741 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 3.4 KB
Line 
1#menu "php4.............................. PHP4 Hypertext preprocessor"
2
3config FWRT_COMPILE_PHP4
4 tristate
5 default y
6 depends FWRT_PACKAGE_PHP4_CLI || FWRT_PACKAGE_PHP4_CGI || FWRT_PACKAGE_PHP4_FASTCGI
7
8comment "PHP 4 Server API ---"
9
10config FWRT_PACKAGE_PHP4_CLI
11 prompt "php4-cli.......................... PHP4 CLI (Command Line Interface)"
12 tristate
13 default n
14 select FWRT_COMPILE_PHP4
15 select FWRT_PACKAGE_LIBOPENSSL
16 select FWRT_PACKAGE_ZLIB
17 help
18 PHP is a widely-used general-purpose scripting language that is especially
19 suited for Web development and can be embedded into HTML.
20
21 http://www.php.net/
22
23config FWRT_PACKAGE_PHP4_CGI
24 prompt "php4-cgi.......................... PHP4 built for CGI"
25 tristate
26 default n
27 select FWRT_COMPILE_PHP4
28 select FWRT_PACKAGE_LIBOPENSSL
29 select FWRT_PACKAGE_ZLIB
30 help
31 PHP is a widely-used general-purpose scripting language that is especially
32 suited for Web development and can be embedded into HTML.
33
34 http://www.php.net/
35
36config FWRT_PACKAGE_PHP4_FASTCGI
37 prompt "php4-fastcgi...................... PHP4 built for FastCGI"
38 tristate
39 default n
40 select FWRT_COMPILE_PHP4
41 select FWRT_PACKAGE_LIBOPENSSL
42 select FWRT_PACKAGE_ZLIB
43 help
44 PHP is a widely-used general-purpose scripting language that is especially
45 suited for Web development and can be embedded into HTML.
46
47 http://www.php.net/
48
49comment "PHP 4 Extensions ---"
50
51config FWRT_PACKAGE_PHP4_MOD_CURL
52 prompt "php4-mod-curl..................... cURL module"
53 tristate
54 default n
55 depends FWRT_COMPILE_PHP4
56 select FWRT_PACKAGE_LIBCURL
57
58config FWRT_PACKAGE_PHP4_MOD_FTP
59 prompt "php4-mod-ftp...................... FTP module"
60 tristate
61 default n
62 depends FWRT_COMPILE_PHP4
63
64config FWRT_PACKAGE_PHP4_MOD_GD
65 prompt "php4-mod-gd....................... GD graphics library module"
66 tristate
67 default n
68 depends FWRT_COMPILE_PHP4
69 select FWRT_PACKAGE_LIBGD
70 select FWRT_PACKAGE_LIBPNG
71
72config FWRT_PACKAGE_PHP4_MOD_GMP
73 prompt "php4-mod-gmp...................... GMP module"
74 tristate
75 default n
76 depends FWRT_COMPILE_PHP4
77 select FWRT_PACKAGE_LIBGMP
78
79#config FWRT_PACKAGE_PHP4_MOD_LDAP
80# prompt "php4-mod-ldap..................... LDAP module"
81# tristate
82# default n
83# depends FWRT_COMPILE_PHP4
84# select FWRT_PACKAGE_LIBOPENLDAP
85
86config FWRT_PACKAGE_PHP4_MOD_MYSQL
87 prompt "php4-mod-mysql.................... MySQL module"
88 tristate
89 default n
90 depends FWRT_COMPILE_PHP4
91 select FWRT_PACKAGE_MYSQL_CLIENT
92
93config FWRT_PACKAGE_PHP4_MOD_OPENSSL
94 prompt "php4-mod-openssl.................. OpenSSL module"
95 tristate
96 default n
97 depends FWRT_COMPILE_PHP4
98 select FWRT_PACKAGE_LIBOPENSSL
99
100config FWRT_PACKAGE_PHP4_MOD_PCRE
101 prompt "php4-mod-pcre..................... PCRE module"
102 tristate
103 default n
104 depends FWRT_COMPILE_PHP4
105 select FWRT_PACKAGE_LIBPCRE
106
107config FWRT_PACKAGE_PHP4_MOD_PGSQL
108 prompt "php4-mod-pgsql.................... PostgreSQL module"
109 tristate
110 default n
111 depends FWRT_COMPILE_PHP4
112 select FWRT_PACKAGE_LIBPQ
113
114config FWRT_PACKAGE_PHP4_MOD_SESSION
115 prompt "php4-mod-session.................. Sessions module"
116 tristate
117 default n
118 depends FWRT_COMPILE_PHP4
119
120config FWRT_PACKAGE_PHP4_MOD_SOCKETS
121 prompt "php4-mod-sockets.................. Sockets module"
122 tristate
123 default n
124 depends FWRT_COMPILE_PHP4
125
126config FWRT_PACKAGE_PHP4_MOD_XML
127 prompt "php4-mod-xml...................... XML module"
128 tristate
129 default n
130 depends FWRT_COMPILE_PHP4
131 select FWRT_PACKAGE_LIBEXPAT
132
133comment "PHP 4 Configuration end ---"
134#endmenu
Note: See TracBrowser for help on using the repository browser.