12345678910111213141516171819202122232425262728293031323334353637 |
- 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 on ADK_PACKAGE_TNTNET
- select ADK_PACKAGE_LIBOPENSSL
- help
- config ADK_COMPILE_TNTNET_WITH_GNUTLS
- bool "enable gnutls encryption support"
- depends on ADK_PACKAGE_TNTNET
- select ADK_PACKAGE_LIBGNUTLS
- help
- endchoice
|