Config.in 899 B

12345678910111213141516171819202122232425262728293031323334353637
  1. config ADK_PACKAGE_TNTNET
  2. prompt "tntnet............................ a modular, multithreaded webapplicationserver"
  3. tristate
  4. default n
  5. depends on ADK_CXX
  6. select ADK_PACKAGE_CXXTOOLS
  7. select ADK_PACKAGE_LIBICONV
  8. select ADK_PACKAGE_LIBPTHREAD
  9. select ADK_PACKAGE_ZLIB
  10. help
  11. Tntnet is a modular, multithreaded webapplicationserver
  12. written from scratch for C++.
  13. http://www.tntnet.org
  14. choice
  15. prompt "SSL/TLS Configuration"
  16. depends on ADK_PACKAGE_TNTNET
  17. default ADK_COMPILE_TNTNET_WITH_OPENSSL
  18. config ADK_COMPILE_TNTNET_WITHOUT_OPENSSL
  19. bool "no ssl encryption support"
  20. help
  21. config ADK_COMPILE_TNTNET_WITH_OPENSSL
  22. bool "enable openssl encryption support"
  23. depends on ADK_PACKAGE_TNTNET
  24. select ADK_PACKAGE_LIBOPENSSL
  25. help
  26. config ADK_COMPILE_TNTNET_WITH_GNUTLS
  27. bool "enable gnutls encryption support"
  28. depends on ADK_PACKAGE_TNTNET
  29. select ADK_PACKAGE_LIBGNUTLS
  30. help
  31. endchoice