blob: c625382b8a221735ab57b186008c9624a8bdbdb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
config BR2_PACKAGE_DBUS
bool "dbus"
depends on BR2_PACKAGE_EXPAT || BR2_PACKAGE_LIBXML2
help
The D-Bus message bus system.
http://www.freedesktop.org/wiki/Software/dbus
comment "dbus not available (need expat or libxml2)"
depends on !BR2_PACKAGE_EXPAT && !BR2_PACKAGE_LIBXML2
choice
prompt "XML library to use"
depends on BR2_PACKAGE_DBUS
default BR2_DBUS_LIBXML2 if (BR2_PACKAGE_LIBXML2 && !BR2_PACKAGE_EXPAT)
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"
depends on BR2_PACKAGE_EXPAT
config BR2_DBUS_LIBXML2
bool "libxml2"
depends on BR2_PACKAGE_LIBXML2
endchoice
|