summaryrefslogtreecommitdiffstats
path: root/package/dbus/Config.in
blob: 97c9ee9acce675fe1f4283a091079d034d92e2f1 (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
31
32
33
34
35
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

if BR2_PACKAGE_DBUS

choice
	prompt "XML library to use"
	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

endif

comment "dbus needs a toolchain w/ threads"
	depends on BR2_USE_MMU
	depends on !BR2_TOOLCHAIN_HAS_THREADS
OpenPOWER on IntegriCloud