compile fix for diag
[openwrt.git] / package / mini_httpd / Config.in
1 config BR2_COMPILE_MINI_HTTPD
2         bool
3         default n
4         depends BR2_PACKAGE_MINI_HTTPD || BR2_PACKAGE_MINI_HTTPD_MATRIXSSL || BR2_PACKAGE_MINI_HTTPD_OPENSSL
5
6 config BR2_PACKAGE_MINI_HTTPD
7         tristate "mini-httpd - A small web server"
8         default m if CONFIG_DEVEL
9         select BR2_COMPILE_MINI_HTTPD
10         help
11          mini_httpd is a small HTTP server. Its performance is not great, but for 
12          low or medium traffic sites it's quite adequate. It implements all the 
13          basic features of an HTTP server, including:
14          
15              * GET, HEAD, and POST methods.
16              * CGI.
17              * Basic authentication.
18              * Security against ".." filename snooping.
19              * The common MIME types.
20              * Trailing-slash redirection.
21              * index.html, index.htm, index.cgi
22              * Directory listings.
23              * Multihoming / virtual hosting.
24              * Standard logging.
25              * Custom error pages. 
26          
27          It can also be configured to do IPv6. 
28          
29          http://www.acme.com/software/mini_httpd/
30          
31
32 config BR2_PACKAGE_MINI_HTTPD_MATRIXSSL
33         tristate "mini-httpd-matrixssl - A small web server, built with SSL support using MatrixSSL"
34         default m if CONFIG_DEVEL
35         select BR2_COMPILE_MINI_HTTPD
36         select BR2_PACKAGE_LIBMATRIXSSL
37         help
38          mini_httpd is a small HTTP server. Its performance is not great, but for 
39          low or medium traffic sites it's quite adequate. It implements all the 
40          basic features of an HTTP server, including:
41          
42              * GET, HEAD, and POST methods.
43              * CGI.
44              * Basic authentication.
45              * Security against ".." filename snooping.
46              * The common MIME types.
47              * Trailing-slash redirection.
48              * index.html, index.htm, index.cgi
49              * Directory listings.
50              * Multihoming / virtual hosting.
51              * Standard logging.
52              * Custom error pages. 
53          
54          It can also be configured to do SSL/HTTPS and IPv6. 
55          
56          http://www.acme.com/software/mini_httpd/
57          
58
59 config BR2_PACKAGE_MINI_HTTPD_OPENSSL
60         tristate "mini-httpd-openssl - A small web server, built with SSL support using OpenSSL"
61         default m if CONFIG_DEVEL
62         select BR2_COMPILE_MINI_HTTPD
63         select BR2_PACKAGE_LIBOPENSSL
64         help
65          mini_httpd is a small HTTP server. Its performance is not great, but for 
66          low or medium traffic sites it's quite adequate. It implements all the 
67          basic features of an HTTP server, including:
68          
69              * GET, HEAD, and POST methods.
70              * CGI.
71              * Basic authentication.
72              * Security against ".." filename snooping.
73              * The common MIME types.
74              * Trailing-slash redirection.
75              * index.html, index.htm, index.cgi
76              * Directory listings.
77              * Multihoming / virtual hosting.
78              * Standard logging.
79              * Custom error pages. 
80          
81          It can also be configured to do SSL/HTTPS and IPv6. 
82          
83          http://www.acme.com/software/mini_httpd/
84