68c3f5257d
This reverts commit f1b86cef98
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>
33 lines
1.2 KiB
Plaintext
33 lines
1.2 KiB
Plaintext
config BR2_PACKAGE_NETWORK_MANAGER
|
|
bool "NetworkManager"
|
|
depends on BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
|
|
select BR2_PACKAGE_DBUS
|
|
depends on BR2_INET_IPV6
|
|
depends on BR2_LARGEFILE # acl
|
|
depends on BR2_USE_WCHAR # libglib2 and gnutls
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
|
|
depends on BR2_USE_MMU # dbus
|
|
select BR2_PACKAGE_DBUS_GLIB
|
|
select BR2_PACKAGE_UDEV
|
|
select BR2_PACKAGE_UDEV_ALL_EXTRAS
|
|
select BR2_PACKAGE_GNUTLS
|
|
select BR2_PACKAGE_LIBGCRYPT
|
|
select BR2_PACKAGE_LIBNL
|
|
select BR2_PACKAGE_UTIL_LINUX
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
|
|
select BR2_PACKAGE_WIRELESS_TOOLS
|
|
select BR2_PACKAGE_WIRELESS_TOOLS_LIB
|
|
help
|
|
NetworkManager is a set of co-operative tools that make networking
|
|
simple and straightforward. Whether WiFi, wired, 3G, or Bluetooth,
|
|
NetworkManager allows you to quickly move from one network to
|
|
another: once a network has been configured and joined once, it
|
|
can be detected and re-joined automatically the next time it's
|
|
available.
|
|
|
|
http://projects.gnome.org/NetworkManager/
|
|
|
|
comment "NetworkManager requires a toolchain with IPV6, LARGEFILE, WCHAR and thread support"
|
|
depends on !BR2_INET_IPV6 || !BR2_LARGEFILE || !BR2_USE_WCHAR || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS
|