From: Peter Korsgaard Date: Thu, 23 Apr 2009 11:44:54 +0000 (-0000) Subject: dbus-glib: needs expat X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7f6e9b2e10c6dd0557d8b72a7e150c3b78c418a4;p=buildroot.git dbus-glib: needs expat Even though dbus can use libxml2 for XML support, dbus-glib cannot - So make sure expat is available. --- diff --git a/package/dbus-glib/Config.in b/package/dbus-glib/Config.in index 52c7e7ca4e..c76848c7ca 100644 --- a/package/dbus-glib/Config.in +++ b/package/dbus-glib/Config.in @@ -2,6 +2,7 @@ config BR2_PACKAGE_DBUS_GLIB bool "dbus-glib" depends on BR2_PACKAGE_DBUS select BR2_PACKAGE_LIBGLIB2 + select BR2_PACKAGE_EXPAT help GLib bindings for D-Bus. diff --git a/package/dbus-glib/dbus-glib.mk b/package/dbus-glib/dbus-glib.mk index ae99dbc2d6..a27ab8146c 100644 --- a/package/dbus-glib/dbus-glib.mk +++ b/package/dbus-glib/dbus-glib.mk @@ -23,7 +23,7 @@ DBUS_GLIB_CONF_OPT = --localstatedir=/var \ --disable-doxygen-docs \ --enable-asserts=yes -DBUS_GLIB_DEPENDENCIES = uclibc host-pkgconfig dbus host-dbus host-dbus-glib libglib2 +DBUS_GLIB_DEPENDENCIES = uclibc host-pkgconfig dbus host-dbus host-dbus-glib libglib2 expat $(eval $(call AUTOTARGETS,package,dbus-glib))