3845a93b30
In order to solve http://autobuild.buildroot.org/results/34f6843137efda20626af72714c110280ec577d7/build-end.log, this patch makes the D-Bus package as well as all the packages that select the D-Bus package 'depends on BR2_USE_MMU'. In addition, for the specific case of gvfs, the missing BR2_TOOLCHAIN_HAS_THREADS dependency is added (threads are required by D-Bus, so they are also required by gvfs which selects D-Bus). Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
32 lines
692 B
Plaintext
32 lines
692 B
Plaintext
config BR2_PACKAGE_DBUS
|
|
bool "dbus"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
# uses fork()
|
|
depends on BR2_USE_MMU
|
|
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
|