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

menuconfig LIBMICROHTTPD
	tristate
	select LIBC_PTHREAD
	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_CLIENT_SIDE
	bool
	prompt "Client side support"
	help
	  FIXME

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

endif