diff options
author | Gary Thomas <gary@mlbassoc.com> | 2012-03-29 08:40:04 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-29 22:57:30 +0100 |
commit | dd4d49b20f3c690d7bff2347e176e7acf6ffc787 (patch) | |
tree | 95d86b03e48682de6a112c7989aadec5b47a140e /meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb | |
parent | 3af7e95d69d29f1a5f79e60adfd4db7bd3c4570d (diff) | |
download | poky-dd4d49b20f3c690d7bff2347e176e7acf6ffc787.tar.gz |
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 <gary@mlbassoc.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb b/meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb index 3c03c0db3f..278c20e033 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb +++ b/meta/recipes-multimedia/gstreamer/gstreamer_0.10.36.bb | |||
@@ -20,7 +20,8 @@ SRC_URI[sha256sum] = "e556a529e0a8cf1cd0afd0cab2af5488c9524e7c3f409de29b5d82bb41 | |||
20 | 20 | ||
21 | inherit autotools pkgconfig gettext | 21 | inherit autotools pkgconfig gettext |
22 | 22 | ||
23 | EXTRA_OECONF = "--disable-docs-build --disable-dependency-tracking --with-check=no --disable-examples --disable-tests --disable-valgrind --disable-debug" | 23 | GSTREAMER_DEBUG ?= "--disable-debug" |
24 | EXTRA_OECONF = "--disable-docs-build --disable-dependency-tracking --with-check=no --disable-examples --disable-tests --disable-valgrind ${GSTREAMER_DEBUG}" | ||
24 | 25 | ||
25 | #do_compile_prepend () { | 26 | #do_compile_prepend () { |
26 | # mv ${WORKDIR}/gstregistrybinary.[ch] ${S}/gst/ | 27 | # mv ${WORKDIR}/gstregistrybinary.[ch] ${S}/gst/ |