669de89be7
This reverts commit 7672b1235d
.
It turns out that libgnutls.so ends up with a reference to wctomb() on
uClibc, as uClibc doesn't have vasnprintf so gnutls builds its internal
gnulib version of it, referencing wctomb().
Fix it by going back to requiring wchar for the base gnutls library as well.
Fixes http://autobuild.buildroot.net/results/780/780e825e56dc78f1ea347ca462e2e31044428775/
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
20 lines
515 B
Plaintext
20 lines
515 B
Plaintext
config BR2_PACKAGE_GNUTLS
|
|
bool "gnutls"
|
|
select BR2_PACKAGE_NETTLE
|
|
select BR2_PACKAGE_PCRE
|
|
depends on BR2_USE_WCHAR
|
|
help
|
|
GnuTLS is a secure communications library implementing the SSL
|
|
and TLS protocols and technologies around them.
|
|
|
|
http://www.gnutls.org
|
|
|
|
config BR2_PACKAGE_GNUTLS_TOOLS
|
|
bool "install tools"
|
|
depends on BR2_PACKAGE_GNUTLS
|
|
help
|
|
Install GnuTLS command line tools for various cryptographic tasks.
|
|
|
|
comment "gnutls requires a toolchain with WCHAR support"
|
|
depends on !BR2_USE_WCHAR
|