6845c4f710
gnutls uses wctomb(), which is available only on C libraries with wide-char support. This fixes the following build failure: http://autobuild.buildroot.org/results/cd4e73be80fbb64858f4cf911d2b893b0fc06465/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
13 lines
356 B
Plaintext
13 lines
356 B
Plaintext
config BR2_PACKAGE_GNUTLS
|
|
bool "gnutls"
|
|
select BR2_PACKAGE_LIBGCRYPT
|
|
depends on BR2_USE_WCHAR
|
|
help
|
|
GnuTLS is a secure communications library implementing the SSL
|
|
and TLS protocols and technologies around them.
|
|
|
|
http://www.gnu.org/software/gnutls/gnutls.html
|
|
|
|
comment "gnutls requires a toolchain with WCHAR support"
|
|
depends on !BR2_USE_WCHAR
|