summaryrefslogtreecommitdiff
path: root/package/dbus/Config.in
AgeCommit message (Collapse)Author
2012-07-25dbus: requires thread supportThomas Petazzoni
As can be seen on the build result at http://autobuild.buildroot.org/results/20f1078ef7dc5f187b04c63ef70e8b43acf9bb3a/build-end.log, D-Bus requires thread support in the toolchain. This commit adjusts the Kconfig dependencies of D-Bus and all its reverse dependencies to depend on thread support in the toolchain. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2012-01-31dbus: make it easier to select an XML library (select rather than depends on)Arnout Vandecappelle (Essensium/Mind)
D-Bus requires an XML library, expat or libxml2. There already is a choice between them in the config menu, but it requires the user to first select one of the libraries, and then select dbus. With this patch, the choice automatically selects the XML library. Note that this removes the automatic choice of libxml2 for dbus if libxml2 had already been selected, i.e. in that case both libxml2 and expat will be selected unless the user takes action. An alternative would be to remove the choice completely, and to take the path of bluez-utils: select BR2_PACKAGE_EXPAT if !BR2_PACKAGE_DBUS_LIBXML2 Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-09-27dbus: prefer expat if available even if libxml2 also isPeter Korsgaard
dbus-glib needs dbus to be compiled with expat support, so prefer that mode even if libxml2 is also enabled. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-03-18pkgconfig: add pkgconfig package for targetPeter Korsgaard
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.
2008-07-17Kconfig: remove 'default n'Peter Korsgaard
'default n' is the default, so there's no need to say it explicitly.
2008-06-19buildroot: s/depends/depends on/Peter Korsgaard
The new kconfig is more strict regarding depends/depends on, so fixup the tree.
2008-06-14packages: fix pkgconfig depencies and select pkgconfig where neededPeter Korsgaard
2007-11-25Fix syntax error in dbusUlf Samuelsson
2007-11-25Fix dependency loop in dbusUlf Samuelsson
2007-11-22Make XML library used by D-Bus selectable instead of requiring both ExpatPeter Korsgaard
and libxml2.
2007-07-17Make dbus depend on libxml2 and link with libUlf Samuelsson
2007-01-14Add packages for D-Bus and G-Lib interface library too."Steven J. Hill"