summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/mx
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2012-02-08 13:29:50 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-02-10 14:38:42 +0000
commit970fcc886e8dff67d85f5a37c69962f7e751940f (patch)
treeb69611f12646fe35d7b821c4ceb5e6b48e90ef6d /meta/recipes-graphics/mx
parent15ff81be40ad085ae7990079c4228b8836ad408e (diff)
downloadpoky-970fcc886e8dff67d85f5a37c69962f7e751940f.tar.gz
mx: ensure gettext and dbus are present
Upstream informs me that D-bus isn't really optional as it's required to make some of the API work such as the single instance MxApplication. Therefore ensure we're building with it enabled. Gettext macros are used in the configure.ac so inherit gettext to ensure the required dependencies are present. (From OE-Core rev: fe2c13684e2a0b652007e92a6f11942c6366483e) Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mx')
-rw-r--r--meta/recipes-graphics/mx/mx_1.4.2.bb8
1 files changed, 5 insertions, 3 deletions
diff --git a/meta/recipes-graphics/mx/mx_1.4.2.bb b/meta/recipes-graphics/mx/mx_1.4.2.bb
index 91eca2960f..c50bc0f986 100644
--- a/meta/recipes-graphics/mx/mx_1.4.2.bb
+++ b/meta/recipes-graphics/mx/mx_1.4.2.bb
@@ -1,9 +1,11 @@
1DESCRIPTION = "Clutter based widget library" 1DESCRIPTION = "Clutter based widget library"
2LICENSE = "LGPLv2.1" 2LICENSE = "LGPLv2.1"
3 3
4DEPENDS = "clutter-1.8" 4PR = "r1"
5 5
6inherit autotools 6DEPENDS = "clutter-1.8 dbus-glib"
7
8inherit autotools gettext
7 9
8SRC_URI = "http://source.clutter-project.org/sources/mx/1.4/mx-${PV}.tar.bz2 \ 10SRC_URI = "http://source.clutter-project.org/sources/mx/1.4/mx-${PV}.tar.bz2 \
9 file://introspection-m4.patch" 11 file://introspection-m4.patch"
@@ -14,5 +16,5 @@ SRC_URI[sha256sum] = "9d40dd48a8e3d098cc75c05163f77305ffb83439783dc91be50681c950
14LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=fbc093901857fcd118f065f900982c24 \ 16LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=fbc093901857fcd118f065f900982c24 \
15 file://mx/mx-widget.c;beginline=8;endline=20;md5=13bba3c973a72414a701e1e87b5ee879" 17 file://mx/mx-widget.c;beginline=8;endline=20;md5=13bba3c973a72414a701e1e87b5ee879"
16 18
17EXTRA_OECONF = "--disable-introspection --disable-gtk-widgets" 19EXTRA_OECONF = "--disable-introspection --disable-gtk-widgets --with-dbus"
18 20