From: Peter Korsgaard Date: Thu, 23 Apr 2009 14:24:58 +0000 (-0000) Subject: dbus-glib: workaround Kconfig issue with select X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8a68eb29bbc076d98de574862cb52f58a0c91ce5;p=buildroot.git dbus-glib: workaround Kconfig issue with select Kconfig gets confused about the selects and thinks there's a recursive dependency around expat, so implement an alternative solution instead. --- diff --git a/package/dbus-glib/Config.in b/package/dbus-glib/Config.in index c76848c7ca..be10c9fb89 100644 --- a/package/dbus-glib/Config.in +++ b/package/dbus-glib/Config.in @@ -1,9 +1,12 @@ config BR2_PACKAGE_DBUS_GLIB bool "dbus-glib" depends on BR2_PACKAGE_DBUS + depends on BR2_PACKAGE_EXPAT select BR2_PACKAGE_LIBGLIB2 - select BR2_PACKAGE_EXPAT help GLib bindings for D-Bus. http://www.freedesktop.org/software/dbus + +comment "dbus-glib needs dbus to be compiled with expat support" + depends on !BR2_PACKAGE_EXPAT