diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-07-25 09:46:34 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-07-25 18:25:43 +0200 |
commit | 6845c4f7103bc3d0105f25b4c02ccb5ceeb9fe80 (patch) | |
tree | c9492e4db76727aeb97c818e646f137ea0052174 /package/libsoup | |
parent | aa457d3b240bd4f6049191988eee8a5b160f0439 (diff) |
gnutls: requires WCHAR support
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>
Diffstat (limited to 'package/libsoup')
-rw-r--r-- | package/libsoup/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libsoup/Config.in b/package/libsoup/Config.in index eee6adecc..f40625d48 100644 --- a/package/libsoup/Config.in +++ b/package/libsoup/Config.in @@ -1,6 +1,6 @@ config BR2_PACKAGE_LIBSOUP bool "libsoup" - depends on BR2_USE_WCHAR # glib2 + depends on BR2_USE_WCHAR # glib2 and gnutls select BR2_PACKAGE_LIBXML2 select BR2_PACKAGE_LIBGLIB2 select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT |