From dd4d49b20f3c690d7bff2347e176e7acf6ffc787 Mon Sep 17 00:00:00 2001 From: Gary Thomas Date: Thu, 29 Mar 2012 08:40:04 -0600 Subject: gstreamer: Provide easy way to enable runtime debugging The gstreamer framework has a very useful debugging setup which is essential for debugging pipelines and plugins. This patch makes it simple to enable this (disabled by default). To enable debugging, just add this line to local.conf GSTREAMER_DEBUG = "--enable-debug" (From OE-Core rev: 947c00c78732da48a111228e1325ad42cf57a370) Signed-off-by: Gary Thomas Signed-off-by: Richard Purdie --- meta/recipes-multimedia/gstreamer/gst-plugins.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'meta/recipes-multimedia/gstreamer/gst-plugins.inc') diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins.inc b/meta/recipes-multimedia/gstreamer/gst-plugins.inc index f11a4af668..ccb81b3281 100644 --- a/meta/recipes-multimedia/gstreamer/gst-plugins.inc +++ b/meta/recipes-multimedia/gstreamer/gst-plugins.inc @@ -10,7 +10,8 @@ FILESPATH =. "${FILE_DIRNAME}/gst-plugins:" SRC_URI = "http://gstreamer.freedesktop.org/src/${BPN}/${BPN}-${PV}.tar.bz2" -EXTRA_OECONF = "--disable-valgrind --disable-debug --disable-examples " +GSTREAMER_DEBUG ?= "--disable-debug" +EXTRA_OECONF = "--disable-valgrind ${GSTREAMER_DEBUG} --disable-examples " acpaths = "-I ${S}/common/m4 -I ${S}/m4" -- cgit v1.2.3-54-g00ecf