diff options
author | Andreas Mueller <schnitzeltony@gmx.de> | 2011-07-17 00:48:34 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-20 15:27:33 +0100 |
commit | 160d0055e8294241af52aa7671d2256ab208a614 (patch) | |
tree | bab872ec04ab997746ccaeb7fd078aad0204f837 | |
parent | d87bedce38b54104997291b26bc991126e767c33 (diff) | |
download | poky-160d0055e8294241af52aa7671d2256ab208a614.tar.gz |
gdk-pixbuf(-native): Fix build by disabling introspection
Error message was:
| /home/Superandy/tmp/oe-core-eglibc/sysroots/x86_64-linux/usr/bin/g-ir-compiler --includedir=. GdkPixbuf-2.0.gir -o GdkPixbuf-2.0.typelib
| /usr/share/gir-1.0/GLib-2.0.gir:9:1: error: Unsupported version '1.1'
| /usr/share/gir-1.0/GLib-2.0.gir:9:39: error: Unsupported version '1.1'
| error parsing file GdkPixbuf-2.0.gir: Failed to parse included gir GLib-2.0
| make[4]: *** [GdkPixbuf-2.0.typelib] Error 1
(From OE-Core rev: ed40a1c776ba3d59f03250b2eb9cfae9b8afadd5)
Signed-off-by: Andreas Mueller <schnitzeltony@gmx.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.22.1.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.22.1.bb b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.22.1.bb index fc879ed6ce..e3e18197d6 100644 --- a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.22.1.bb +++ b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.22.1.bb | |||
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7 \ | |||
9 | SECTION = "libs" | 9 | SECTION = "libs" |
10 | 10 | ||
11 | DEPENDS = "libpng glib-2.0 jpeg" | 11 | DEPENDS = "libpng glib-2.0 jpeg" |
12 | PR = "r0" | 12 | PR = "r1" |
13 | 13 | ||
14 | SRC_URI = "http://ftp.acc.umu.se/pub/GNOME/sources/gdk-pixbuf/2.22/gdk-pixbuf-${PV}.tar.gz \ | 14 | SRC_URI = "http://ftp.acc.umu.se/pub/GNOME/sources/gdk-pixbuf/2.22/gdk-pixbuf-${PV}.tar.gz \ |
15 | file://hardcoded_libtool.patch;patch=1 \ | 15 | file://hardcoded_libtool.patch;patch=1 \ |
@@ -26,6 +26,7 @@ LIBV = "2.10.0" | |||
26 | EXTRA_OECONF = "\ | 26 | EXTRA_OECONF = "\ |
27 | --without-libtiff \ | 27 | --without-libtiff \ |
28 | --with-libpng \ | 28 | --with-libpng \ |
29 | --disable-introspection \ | ||
29 | " | 30 | " |
30 | 31 | ||
31 | FILES_${PN} = "${bindir}/gdk-pixbuf-query-loaders \ | 32 | FILES_${PN} = "${bindir}/gdk-pixbuf-query-loaders \ |