Config.in 956 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. config BR2_PACKAGE_GNUTLS
  2. bool "gnutls"
  3. # https://gitlab.com/gnutls/gnutls/issues/203
  4. depends on !BR2_STATIC_LIBS
  5. depends on BR2_USE_WCHAR
  6. select BR2_PACKAGE_LIBTASN1
  7. select BR2_PACKAGE_LIBUNISTRING
  8. select BR2_PACKAGE_NETTLE
  9. help
  10. GnuTLS is a secure communications library implementing the SSL
  11. and TLS protocols and technologies around them.
  12. https://www.gnutls.org/
  13. if BR2_PACKAGE_GNUTLS
  14. config BR2_PACKAGE_GNUTLS_OPENSSL
  15. bool "OpenSSL compatibility library"
  16. help
  17. Install OpenSSL compatibility library.
  18. config BR2_PACKAGE_GNUTLS_TOOLS
  19. bool "install tools"
  20. help
  21. Install GnuTLS command line tools for various cryptographic
  22. tasks.
  23. config BR2_PACKAGE_GNUTLS_ENABLE_SSL2
  24. bool "enable SSLv2"
  25. help
  26. Enable SSLv2 protocol.
  27. config BR2_PACKAGE_GNUTLS_ENABLE_GOST
  28. bool "enable GOST"
  29. help
  30. Enable GOST cipher.
  31. endif
  32. comment "gnutls needs a toolchain w/ wchar, dynamic library"
  33. depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS