summaryrefslogtreecommitdiff
path: root/package/tntnet/Config.in
blob: 9abab9b829d22230ff3e2ef5cdeb6cb9f6fff5c0 (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
config ADK_PACKAGE_TNTNET
	prompt "tntnet............................ a modular, multithreaded webapplicationserver"
	tristate
	default n
	depends on ADK_CXX
	select ADK_PACKAGE_CXXTOOLS
	select ADK_PACKAGE_LIBICONV
	select ADK_PACKAGE_LIBPTHREAD
	select ADK_PACKAGE_ZLIB
	help
	  Tntnet is a modular, multithreaded webapplicationserver
	  written from scratch for C++.
	  
	  http://www.tntnet.org

choice
prompt "SSL/TLS Configuration"
depends on ADK_PACKAGE_TNTNET
default ADK_COMPILE_TNTNET_WITH_OPENSSL

config ADK_COMPILE_TNTNET_WITHOUT_OPENSSL
	bool "no ssl encryption support"
	help

config ADK_COMPILE_TNTNET_WITH_OPENSSL
	bool "enable openssl encryption support"
	depends ADK_PACKAGE_TNTNET
	select ADK_PACKAGE_LIBOPENSSL
	help

config ADK_COMPILE_TNTNET_WITH_GNUTLS
	bool "enable gnutls encryption support"
	depends ADK_PACKAGE_TNTNET
	select ADK_PACKAGE_LIBGNUTLS
	help

endchoice