diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-04-23 14:24:58 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-04-23 14:24:58 +0000 |
commit | 8a68eb29bbc076d98de574862cb52f58a0c91ce5 (patch) | |
tree | 08fad43c072b1b3eb2f3006bb1b3332fb1c8f20a | |
parent | c5dc5dcc0043dc3b7d7424594099b55854f1f5ea (diff) | |
download | buildroot-novena-8a68eb29bbc076d98de574862cb52f58a0c91ce5.tar.gz buildroot-novena-8a68eb29bbc076d98de574862cb52f58a0c91ce5.zip |
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.
-rw-r--r-- | package/dbus-glib/Config.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/dbus-glib/Config.in b/package/dbus-glib/Config.in index c76848c7c..be10c9fb8 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 |