diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2013-02-05 11:45:28 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-02-05 11:45:28 +0100 |
commit | 68c3f5257d94d0fc0437747014f3c1ff4d02aa8b (patch) | |
tree | 64a5324907ef7a553e66c2910a8054d3e82f3831 /package/gnutls/Config.in | |
parent | ab6f23bda038e83c7ff4f407579572fd4f4d8437 (diff) | |
download | buildroot-novena-68c3f5257d94d0fc0437747014f3c1ff4d02aa8b.tar.gz buildroot-novena-68c3f5257d94d0fc0437747014f3c1ff4d02aa8b.zip |
Revert "gnutls: make it non-wchar friendly"
This reverts commit f1b86cef9884894df26ed25efaabe254f8f0754b
While the fix makes gnutls build without wchar, it doesn't actually work as
there's no rpl_wctomb implementation so the .so ends up with an undefined
reference to wctomb:
./host/usr/bin/arm-linux-nm -D staging/usr/lib/libgnutls.so.28|grep wctomb
U wctomb
Causing linker errors for packages trying to use it:
CCLD msmtp
host/usr/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/lib/libgnutls.so:
undefined reference to `wctomb'
collect2: ld returned 1 exit status
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/gnutls/Config.in')
-rw-r--r-- | package/gnutls/Config.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/gnutls/Config.in b/package/gnutls/Config.in index c2ff4edb9..3a34c48b6 100644 --- a/package/gnutls/Config.in +++ b/package/gnutls/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_GNUTLS bool "gnutls" select BR2_PACKAGE_NETTLE + depends on BR2_USE_WCHAR help GnuTLS is a secure communications library implementing the SSL and TLS protocols and technologies around them. @@ -9,10 +10,9 @@ config BR2_PACKAGE_GNUTLS config BR2_PACKAGE_GNUTLS_TOOLS bool "install tools" - depends on BR2_PACKAGE_GNUTLS depends on BR2_USE_WCHAR help Install GnuTLS command line tools for various cryptographic tasks. -comment "gnutls tools requires a toolchain with WCHAR support" - depends on BR2_PACKAGE_GNUTLS && !BR2_USE_WCHAR +comment "gnutls requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR |