diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2016-08-11 17:21:55 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-09 12:12:22 +0100 |
commit | 3878dacc3824908c6805e53fcb179ae99d53f0e3 (patch) | |
tree | e2c89a40e05edd0920f55249f85dc57148846d52 /meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server.inc | |
parent | e1aad9e8a151643b2644fdcc24f1bdaa90138d86 (diff) | |
download | poky-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-rtsp-server.inc')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server.inc | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server.inc index 8fc90f1d26..13ba40d3da 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server.inc +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server.inc | |||
@@ -13,7 +13,7 @@ SRC_URI = "http://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.xz | |||
13 | 13 | ||
14 | S = "${WORKDIR}/${PNREAL}-${PV}" | 14 | S = "${WORKDIR}/${PNREAL}-${PV}" |
15 | 15 | ||
16 | inherit autotools pkgconfig upstream-version-is-even gobject-introspection | 16 | inherit autotools pkgconfig upstream-version-is-even gobject-introspection gtk-doc |
17 | 17 | ||
18 | # Starting with 1.8.0 gst-rtsp-server includes dependency-less plugins as well | 18 | # Starting with 1.8.0 gst-rtsp-server includes dependency-less plugins as well |
19 | LIBV = "1.0" | 19 | LIBV = "1.0" |
@@ -24,5 +24,15 @@ delete_pkg_m4_file() { | |||
24 | rm "${S}/common/m4/pkg.m4" || true | 24 | rm "${S}/common/m4/pkg.m4" || true |
25 | } | 25 | } |
26 | 26 | ||
27 | do_configure[prefuncs] += " delete_pkg_m4_file" | 27 | # gstreamer is not using system-wide makefiles (which we patch in gtkdoc recipe, |
28 | # but its own custom ones, which we have to patch here | ||
29 | patch_gtk_doc_makefiles() { | ||
30 | # Patch the gtk-doc makefiles so that the qemu wrapper is used to run transient binaries | ||
31 | # instead of libtool wrapper or running them directly | ||
32 | sed -i \ | ||
33 | -e "s|GTKDOC_RUN =.*|GTKDOC_RUN = \$(top_builddir)/gtkdoc-qemuwrapper|" \ | ||
34 | ${S}/common/gtk-doc*mak | ||
35 | } | ||
36 | |||
37 | do_configure[prefuncs] += " delete_pkg_m4_file patch_gtk_doc_makefiles" | ||
28 | 38 | ||