77754571b2
The host versions shouldn't be visible in Kconfig, so remove the reference to BR2_PACKAGE_PKGCONFIG everywhere and prefix the host targets with host-. At the same time add pkgconfig for the target (E.G. for development) and let BR2_PACKAGE_PKGCONFIG control that package. Notice: all defconfigs in the tree have been updated, but make sure to disable the pkgconfig package (unless you want it) if you use an external config, otherwise you'll end up with pkgconfig and glib2 in the target.
31 lines
738 B
Plaintext
31 lines
738 B
Plaintext
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
|
|
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
|