|
@@ -8,6 +8,7 @@ config BR2_PACKAGE_CONNMAN
|
|
|
depends on BR2_USE_MMU # dbus, libglib2
|
|
|
depends on !BR2_STATIC_LIBS # needs dlopen()
|
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
|
+ depends on !BR2_TOOLCHAIN_USES_MUSL # mixes userspace and kernel headers
|
|
|
help
|
|
|
The Connection Manager (ConnMan) project provides a daemon
|
|
|
for managing internet connections within embedded devices
|
|
@@ -66,7 +67,8 @@ config BR2_PACKAGE_CONNMAN_CLIENT
|
|
|
|
|
|
endif # BR2_PACKAGE_CONNMAN
|
|
|
|
|
|
-comment "connman needs a toolchain w/ wchar, threads, resolver, dynamic library"
|
|
|
+comment "connman needs a glibc or uClibc toolchain w/ wchar, threads, resolver, dynamic library"
|
|
|
depends on BR2_USE_MMU
|
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
|
- depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
|
|
+ depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS \
|
|
|
+ || BR2_TOOLCHAIN_USES_MUSL
|