kumquat-buildroot/package/efl/libedbus/Config.in
Thomas Petazzoni 3845a93b30 dbus: uses fork(), requires MMU
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>
2012-11-17 23:49:26 +01:00

38 lines
904 B
Plaintext

config BR2_PACKAGE_LIBEDBUS
bool "libedbus"
select BR2_PACKAGE_LIBEINA
select BR2_PACKAGE_LIBECORE
select BR2_PACKAGE_DBUS
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
depends on BR2_USE_MMU # dbus
help
E_Dbus is a set of wrappers around D-Bus APIs so they can be
easily used by EFL applications, automatically providing
Ecore/main loop integration, as well as Eina data types.
http://trac.enlightenment.org/e/wiki/E_Dbus
if BR2_PACKAGE_LIBEDBUS
config BR2_PACKAGE_LIBEDBUS_BLUEZ
bool "bluez support"
select BR2_PACKAGE_BLUEZ_UTILS
help
Bluetooth support.
config BR2_PACKAGE_LIBEDBUS_CONNMAN
bool "connman support"
depends on BR2_PACKAGE_CONNMAN
help
Connection manager support.
config BR2_PACKAGE_LIBEDBUS_NOTIFY
bool "notify support"
help
Notify support.
endif
comment "libedbus requires a toolchain with thread support"
depends on !BR2_TOOLCHAIN_HAS_THREADS