Config.in 973 B

1234567891011121314151617181920212223242526272829303132333435
  1. config BR2_PACKAGE_GNUTLS
  2. bool "gnutls"
  3. # https://gitlab.com/gnutls/gnutls/issues/203
  4. depends on !BR2_STATIC_LIBS
  5. # gnulib requires a library that implements wctomb().
  6. # This is noticed only when linking with libgnutls.so.
  7. depends on BR2_USE_WCHAR
  8. select BR2_PACKAGE_LIBTASN1
  9. select BR2_PACKAGE_NETTLE
  10. select BR2_PACKAGE_PCRE
  11. help
  12. GnuTLS is a secure communications library implementing the SSL
  13. and TLS protocols and technologies around them.
  14. http://www.gnutls.org
  15. if BR2_PACKAGE_GNUTLS
  16. config BR2_PACKAGE_GNUTLS_OPENSSL
  17. bool "OpenSSL compatibility library"
  18. help
  19. Install OpenSSL compatibility library.
  20. config BR2_PACKAGE_GNUTLS_TOOLS
  21. bool "install tools"
  22. select BR2_PACKAGE_ARGP_STANDALONE \
  23. if BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_MUSL
  24. help
  25. Install GnuTLS command line tools for various cryptographic
  26. tasks.
  27. endif
  28. comment "gnutls needs a toolchain w/ wchar, dynamic library"
  29. depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS