Commit e6ce0f5b authored by Thomas Petazzoni's avatar Thomas Petazzoni
Browse files

dbus: requires thread support

As can be seen on the build result at
http://autobuild.buildroot.org/results/20f1078ef7dc5f187b04c63ef70e8b43acf9bb3a/build-end.log

,
D-Bus requires thread support in the toolchain.

This commit adjusts the Kconfig dependencies of D-Bus and all its
reverse dependencies to depend on thread support in the toolchain.

Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 6845c4f7
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
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
@@ -30,5 +31,5 @@ config BR2_PACKAGE_BLUEZ_UTILS_USB

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
+4 −2
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@ config BR2_PACKAGE_CONNMAN
	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
@@ -46,5 +47,6 @@ config BR2_PACKAGE_CONNMAN_CLIENT

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
+4 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_DBUS
	bool "dbus"
	depends on BR2_TOOLCHAIN_HAS_THREADS
	help
	  The D-Bus message bus system.

@@ -23,3 +24,6 @@ choice
		select BR2_PACKAGE_LIBXML2

endchoice

comment "dbus requires a toolchain with thread support"
	depends on !BR2_TOOLCHAIN_HAS_THREADS
+4 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@ config BR2_PACKAGE_LIBEDBUS
	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
@@ -30,3 +31,6 @@ config BR2_PACKAGE_LIBEDBUS_NOTIFY
	  Notify support.

endif

comment "libedbus requires a toolchain with thread support"
	depends on !BR2_TOOLCHAIN_HAS_THREADS
+4 −3
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@ config BR2_PACKAGE_NETWORK_MANAGER
	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
@@ -24,6 +25,6 @@ config BR2_PACKAGE_NETWORK_MANAGER

	  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
Loading