xref: /OK3568_Linux_fs/buildroot/package/gnutls/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config 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
15	  https://www.gnutls.org/
16
17if BR2_PACKAGE_GNUTLS
18
19config BR2_PACKAGE_GNUTLS_OPENSSL
20	bool "OpenSSL compatibility library"
21	help
22	  Install OpenSSL compatibility library.
23
24config BR2_PACKAGE_GNUTLS_TOOLS
25	bool "install tools"
26	help
27	  Install GnuTLS command line tools for various cryptographic
28	  tasks.
29
30endif
31
32comment "gnutls needs a toolchain w/ wchar, dynamic library"
33	depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS
34