summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/gstreamer/gstreamer1.0.inc
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2016-08-11 17:21:55 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-09-09 12:12:22 +0100
commit3878dacc3824908c6805e53fcb179ae99d53f0e3 (patch)
treee2c89a40e05edd0920f55249f85dc57148846d52 /meta/recipes-multimedia/gstreamer/gstreamer1.0.inc
parente1aad9e8a151643b2644fdcc24f1bdaa90138d86 (diff)
downloadpoky-3878dacc3824908c6805e53fcb179ae99d53f0e3.tar.gz
gstreamer1.0: enable gtk-doc support
check support is no longer disabled by default because it is a requirement of gtk-doc support in gstreamer. (From OE-Core rev: 628a849ff14e165b8c00c6649d042225f5a35732) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0.inc')
-rw-r--r--meta/recipes-multimedia/gstreamer/gstreamer1.0.inc18
1 files changed, 14 insertions, 4 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0.inc
index 86ac10c84e..e6bd2dd5b2 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0.inc
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0.inc
@@ -8,7 +8,7 @@ LICENSE = "LGPLv2+"
8 8
9DEPENDS = "glib-2.0 glib-2.0-native libcap libxml2 bison-native flex-native" 9DEPENDS = "glib-2.0 glib-2.0-native libcap libxml2 bison-native flex-native"
10 10
11inherit autotools pkgconfig gettext upstream-version-is-even gobject-introspection 11inherit autotools pkgconfig gettext upstream-version-is-even gobject-introspection gtk-doc
12 12
13# This way common/m4/introspection.m4 will come first 13# This way common/m4/introspection.m4 will come first
14# (it has a custom INTROSPECTION_INIT macro, and so must be used instead of our common introspection.m4 file) 14# (it has a custom INTROSPECTION_INIT macro, and so must be used instead of our common introspection.m4 file)
@@ -20,7 +20,6 @@ SRC_URI_append = " \
20 20
21PACKAGECONFIG ??= "" 21PACKAGECONFIG ??= ""
22 22
23PACKAGECONFIG[check] = "--enable-check,--disable-check"
24PACKAGECONFIG[debug] = "--enable-debug,--disable-debug" 23PACKAGECONFIG[debug] = "--enable-debug,--disable-debug"
25PACKAGECONFIG[tests] = "--enable-tests,--disable-tests" 24PACKAGECONFIG[tests] = "--enable-tests,--disable-tests"
26PACKAGECONFIG[valgrind] = "--enable-valgrind,--disable-valgrind,valgrind," 25PACKAGECONFIG[valgrind] = "--enable-valgrind,--disable-valgrind,valgrind,"
@@ -31,7 +30,6 @@ EXTRA_OECONF = " \
31 --disable-dependency-tracking \ 30 --disable-dependency-tracking \
32 --disable-docbook \ 31 --disable-docbook \
33 --disable-examples \ 32 --disable-examples \
34 --disable-gtk-doc \
35" 33"
36 34
37CACHED_CONFIGUREVARS += "ac_cv_header_valgrind_valgrind_h=no" 35CACHED_CONFIGUREVARS += "ac_cv_header_valgrind_valgrind_h=no"
@@ -53,7 +51,19 @@ delete_pkg_m4_file() {
53 rm "${S}/common/m4/pkg.m4" || true 51 rm "${S}/common/m4/pkg.m4" || true
54} 52}
55 53
56do_configure[prefuncs] += " delete_pkg_m4_file" 54# gstreamer is not using system-wide makefiles (which we patch in gtkdoc recipe,
55# but its own custom ones, which we have to patch here
56patch_gtk_doc_makefiles() {
57 # Patch the gtk-doc makefiles so that the qemu wrapper is used to run transient binaries
58 # instead of libtool wrapper or running them directly
59 # Also substitute a bogus plugin scanner, as trying to run the real one is causing issues during build on x86_64.
60 sed -i \
61 -e "s|GTKDOC_RUN =.*|GTKDOC_RUN = \$(top_builddir)/gtkdoc-qemuwrapper|" \
62 -e "s|\$(GTKDOC_EXTRA_ENVIRONMENT)|\$(GTKDOC_EXTRA_ENVIRONMENT) GST_PLUGIN_SCANNER_1_0=\$(top_builddir)/libs/gst/helpers/gst-plugin-scanner-dummy|" \
63 ${S}/common/gtk-doc*mak
64}
65
66do_configure[prefuncs] += " delete_pkg_m4_file patch_gtk_doc_makefiles"
57 67
58do_compile_prepend() { 68do_compile_prepend() {
59 export GIR_EXTRA_LIBS_PATH="${B}/gst/.libs:${B}/libs/gst/base/.libs" 69 export GIR_EXTRA_LIBS_PATH="${B}/gst/.libs:${B}/libs/gst/base/.libs"