summaryrefslogtreecommitdiffstats
path: root/rules/libmicrohttpd.in
blob: dc4deb63af2833001373527058d4d8541f88b022 (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
## SECTION=staging
## old section:
### 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.

	  STAGING: remove in ptxdist-2016.08.0
	  Upstream is at revision 0.9 and the archives for 0.4.4 seems no longer
	  available.

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