summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2012-12-17 17:21:11 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-12-17 17:53:52 +0000
commit2a9c574fd8b0800199b6569b6abf02634801013d (patch)
tree4b7f4ff7c53523ee1c7a13f5c97c89be68376851 /meta/recipes-multimedia
parent91b6a483cf3d6b8bc2c2cfcd72d921cb5977232c (diff)
downloadpoky-2a9c574fd8b0800199b6569b6abf02634801013d.tar.gz
gst-openmax: fix build with newer GLib
The new GLib deprecated some threading API, but gst-openmax wasn't detecting release vs development at all so assuming development, and thus building with -Werror. Set the variable that the configure script is assuming to exist, so that -Werror isn't used. (From OE-Core rev: 26bf8f6a047ccc0f73eaa40093afddabfce8ea1b) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia')
-rw-r--r--meta/recipes-multimedia/gstreamer/gst-openmax_0.10.1.bb6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-openmax_0.10.1.bb b/meta/recipes-multimedia/gstreamer/gst-openmax_0.10.1.bb
index 76c8135493..af482ede73 100644
--- a/meta/recipes-multimedia/gstreamer/gst-openmax_0.10.1.bb
+++ b/meta/recipes-multimedia/gstreamer/gst-openmax_0.10.1.bb
@@ -11,9 +11,13 @@ SRC_URI = "http://gstreamer.freedesktop.org/src/gst-openmax/gst-openmax-${PV}.ta
11 11
12inherit autotools 12inherit autotools
13 13
14# Tell configure that this isn't a development snapshot so we don't want
15# -Werror (hopefully fixed in 0.10.2)
16export GST_CVS="no"
17
14EXTRA_OECONF += "--disable-valgrind" 18EXTRA_OECONF += "--disable-valgrind"
15 19
16PR = "r3" 20PR = "r4"
17 21
18FILES_${PN} += "${libdir}/gstreamer-0.10/libgstomx.so" 22FILES_${PN} += "${libdir}/gstreamer-0.10/libgstomx.so"
19FILES_${PN}-dev += "${libdir}/gstreamer-0.10/libgstomx.la" 23FILES_${PN}-dev += "${libdir}/gstreamer-0.10/libgstomx.la"