config BR2_PACKAGE_BLUEZ_UTILS
bool "bluez-utils"
depends on BR2_USE_WCHAR # libglib2
+ depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
select BR2_PACKAGE_DBUS
select BR2_PACKAGE_LIBGLIB2
help
endif
-comment "bluez-utils require a toolchain with WCHAR support"
- depends on !(BR2_USE_WCHAR)
+comment "bluez-utils require a toolchain with WCHAR and thread support"
+ depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
depends on !(BR2_UCLIBC_VERSION_0_9_31 || BR2_UCLIBC_VERSION_0_9_32)
depends on BR2_USE_WCHAR # libglib2 and gnutls
depends on BR2_INET_IPV6
+ depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
help
The Connection Manager (ConnMan) project provides a daemon for
managing internet connections within embedded devices running
endif # BR2_PACKAGE_CONNMAN
-comment "connman needs a toolchain with IPv6, WCHAR and resolver support"
- depends on BR2_UCLIBC_VERSION_0_9_31 || BR2_UCLIBC_VERSION_0_9_32 || !BR2_USE_WCHAR || !BR2_INET_IPV6
+comment "connman needs a toolchain with IPv6, WCHAR, thread and resolver support"
+ depends on BR2_UCLIBC_VERSION_0_9_31 || BR2_UCLIBC_VERSION_0_9_32 || \
+ !BR2_USE_WCHAR || !BR2_INET_IPV6 || !BR2_TOOLCHAIN_HAS_THREADS
config BR2_PACKAGE_DBUS
bool "dbus"
+ depends on BR2_TOOLCHAIN_HAS_THREADS
help
The D-Bus message bus system.
select BR2_PACKAGE_LIBXML2
endchoice
+
+comment "dbus requires a toolchain with thread support"
+ depends on !BR2_TOOLCHAIN_HAS_THREADS
select BR2_PACKAGE_LIBEINA
select BR2_PACKAGE_LIBECORE
select BR2_PACKAGE_DBUS
+ depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
help
E_Dbus is a set of wrappers around D-Bus APIs so they can be
easily used by EFL applications, automatically providing
Notify support.
endif
+
+comment "libedbus requires a toolchain with thread support"
+ depends on !BR2_TOOLCHAIN_HAS_THREADS
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
select BR2_PACKAGE_DBUS_GLIB
select BR2_PACKAGE_UDEV
select BR2_PACKAGE_UDEV_ALL_EXTRAS
http://projects.gnome.org/NetworkManager/
-comment "NetworkManager requires a toolchain with IPV6, LARGEFILE and WCHAR support"
- depends on !BR2_INET_IPV6 || !BR2_LARGEFILE || !BR2_USE_WCHAR
-
+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
config BR2_PACKAGE_OFONO
bool "ofono"
depends on BR2_USE_WCHAR # gettext/libglib2
+ depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
select BR2_PACKAGE_LIBCAP_NG
select BR2_PACKAGE_DBUS
select BR2_PACKAGE_LIBGLIB2
http://ofono.org/
-comment "ofono requires a toolchain with WCHAR support"
- depends on !BR2_USE_WCHAR
+comment "ofono requires a toolchain with WCHAR and thread support"
+ depends on !BR2_USE_WCHAR || \
+ !BR2_TOOLCHAIN_HAS_THREADS
config BR2_PACKAGE_QT_DBUS
bool "DBus Module"
select BR2_PACKAGE_DBUS
+ depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
help
Build the Qt DBus module.
+comment "DBus Module requires a toolchain with thread support"
+ depends on !BR2_TOOLCHAIN_HAS_THREADS
+
config BR2_PACKAGE_QT_XML
bool "XML Module"
default y
bool "support avahi"
default y
depends on BR2_PACKAGE_AVAHI_DAEMON
+ depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
select BR2_PACKAGE_DBUS
help
Include support for avahi
-comment "support avahi - disabled (requires avahi-daemon)"
- depends on !BR2_PACKAGE_AVAHI_DAEMON
+comment "support avahi - disabled (requires avahi-daemon and thread support in toolchain)"
+ depends on !BR2_PACKAGE_AVAHI_DAEMON || !BR2_TOOLCHAIN_HAS_THREADS
config BR2_PACKAGE_SAMBA_GAMIN
bool "support gamin"
bool "systemd"
depends on BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
depends on BR2_INET_IPV6
+ depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
select BR2_PACKAGE_DBUS
select BR2_PACKAGE_LIBCAP
help
http://freedesktop.org/wiki/Software/systemd
-comment "systemd not available (depends on /dev management with udev and ipv6 support)"
- depends on !(BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV && BR2_INET_IPV6)
+comment "systemd not available (depends on /dev management with udev and ipv6 support, and thread support in toolchain)"
+ depends on !BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV || !BR2_INET_IPV6 || \\
+ !BR2_TOOLCHAIN_HAS_THREADS