2007-01-14 04:45:06 +01:00
|
|
|
config BR2_PACKAGE_DBUS
|
|
|
|
bool "dbus"
|
|
|
|
default n
|
2007-11-25 15:49:45 +01:00
|
|
|
depends on BR2_PACKAGE_EXPAT || BR2_PACKAGE_LIBXML2
|
2008-06-14 23:01:16 +02:00
|
|
|
select BR2_PACKAGE_PKGCONFIG
|
2007-01-14 04:45:06 +01:00
|
|
|
help
|
|
|
|
The D-Bus message bus system.
|
|
|
|
|
|
|
|
http://www.freedesktop.org/wiki/Software/dbus
|
2007-11-22 18:12:19 +01:00
|
|
|
|
2007-11-26 00:30:29 +01:00
|
|
|
comment "dbus not available (need expat or libxml2)"
|
2007-11-25 15:49:45 +01:00
|
|
|
depends on !BR2_PACKAGE_EXPAT && !BR2_PACKAGE_LIBXML2
|
|
|
|
|
2007-11-22 18:12:19 +01:00
|
|
|
choice
|
|
|
|
prompt "XML library to use"
|
2008-06-19 21:06:25 +02:00
|
|
|
depends on BR2_PACKAGE_DBUS
|
2007-11-22 18:12:19 +01:00
|
|
|
default BR2_DBUS_LIBXML2 if BR2_PACKAGE_LIBXML2
|
|
|
|
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
|
2007-11-25 15:49:45 +01:00
|
|
|
bool "Expat"
|
|
|
|
depends on BR2_PACKAGE_EXPAT
|
2007-11-22 18:12:19 +01:00
|
|
|
|
|
|
|
config BR2_DBUS_LIBXML2
|
2007-11-25 15:49:45 +01:00
|
|
|
bool "libxml2"
|
|
|
|
depends on BR2_PACKAGE_LIBXML2
|
2007-11-22 18:12:19 +01:00
|
|
|
|
|
|
|
endchoice
|