e6ce0f5bfb
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: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
30 lines
653 B
Plaintext
30 lines
653 B
Plaintext
config BR2_PACKAGE_DBUS
|
|
bool "dbus"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
help
|
|
The D-Bus message bus system.
|
|
|
|
http://www.freedesktop.org/wiki/Software/dbus
|
|
|
|
choice
|
|
prompt "XML library to use"
|
|
depends on BR2_PACKAGE_DBUS
|
|
default BR2_DBUS_EXPAT
|
|
help
|
|
Select the XML library to use with D-Bus. Select Expat
|
|
unless you have specific reasons for using libxml2 as
|
|
Expat is significant smaller.
|
|
|
|
config BR2_DBUS_EXPAT
|
|
bool "Expat"
|
|
select BR2_PACKAGE_EXPAT
|
|
|
|
config BR2_DBUS_LIBXML2
|
|
bool "libxml2"
|
|
select BR2_PACKAGE_LIBXML2
|
|
|
|
endchoice
|
|
|
|
comment "dbus requires a toolchain with thread support"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|