[oe-commits] Ross Burton : gst-openmax: fix build with newer GLib

git at git.openembedded.org git at git.openembedded.org
Wed Dec 19 18:02:03 UTC 2012


Module: openembedded-core.git
Branch: master-next
Commit: 26bf8f6a047ccc0f73eaa40093afddabfce8ea1b
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=26bf8f6a047ccc0f73eaa40093afddabfce8ea1b

Author: Ross Burton <ross.burton at intel.com>
Date:   Mon Dec 17 17:21:11 2012 +0000

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.

Signed-off-by: Ross Burton <ross.burton at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 .../gstreamer/gst-openmax_0.10.1.bb                |    6 +++++-
 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 76c8135..af482ed 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
 
 inherit autotools
 
+# Tell configure that this isn't a development snapshot so we don't want
+# -Werror (hopefully fixed in 0.10.2)
+export GST_CVS="no"
+
 EXTRA_OECONF += "--disable-valgrind"
 
-PR = "r3"
+PR = "r4"
 
 FILES_${PN} += "${libdir}/gstreamer-0.10/libgstomx.so"
 FILES_${PN}-dev += "${libdir}/gstreamer-0.10/libgstomx.la"





More information about the Openembedded-commits mailing list