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

menuconfig LIBMICROHTTPD
	tristate
	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_LARGEFILE
	bool
	prompt "Large file support"
	default y
	help
	  FIXME

config LIBMICROHTTPD_HTTPS
	bool
	prompt "HTTPS support"
	help
	  FIXME

config LIBMICROHTTPD_CLIENT_SIDE
	bool
	prompt "Client side support"
	help
	  FIXME

config LIBMICROHTTPD_MESSAGES
	bool
	prompt "Messages"
	help
	  FIXME

endif