summaryrefslogtreecommitdiffstats
path: root/rules/libmicrohttpd.in
blob: ea650159494e561a5b12d4dc7949f4e91b13db2b (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
## SECTION=networking

menuconfig LIBMICROHTTPD
	tristate
	select LIBC_PTHREAD if RUNTIME
	select GNUTLS if LIBMICROHTTPD_HTTPS
	select LIBGCRYPT if LIBMICROHTTPD_HTTPS
	prompt "libmicrohttpd                 "
	help
	  Library embedding HTTP server functionality

	  libmicrohttpd is a small C library for embedding HTTP server
	  functionality into applications. It will be used in future
	  GNUnet versions as part of the HTTP transport.

if LIBMICROHTTPD

config LIBMICROHTTPD_HTTPS
	bool
	prompt "HTTPS support"
	help
	  Run in https mode (this option may not work with all
	  threading modes yet).
	  If you disable HTTPS/SSL support, you can also choose the
	  eCos License.

config LIBMICROHTTPD_MESSAGES
	bool
	prompt "Messages"
	help
	  Enable MHD error messages

endif