66bb10b7b0
This patch lines up the comments in Config.in files that clarify which toolchain options the package depends on. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
32 lines
680 B
Plaintext
32 lines
680 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 needs a toolchain w/ threads"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|