diff options
author | Ismo Puustinen <ismo.puustinen@intel.com> | 2016-12-08 18:58:01 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-13 22:47:31 +0000 |
commit | e87250d801622befa09ddba9ec8ecf7a4dcf902c (patch) | |
tree | e8f12170fe3ac656a90872931d3567b765abef49 /meta/recipes-multimedia/gstreamer | |
parent | 908570a0da4bf755eb06fed817676c26351ab375 (diff) | |
download | openembedded-core-contrib-e87250d801622befa09ddba9ec8ecf7a4dcf902c.tar.gz |
gstreamer-vaapi-1.0: check for "opengl" feature
If "opengl" distro feature is not set, libva recipe is skipped. Since
missing libva breaks gstreamer-vaapi-1.0 build, the same check has to be
done in gstreamer-vaapi-1.0 recipe too.
Signed-off-by: Ismo Puustinen <ismo.puustinen@intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi.inc index 6dea9cfc3c6..59b032455b4 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi.inc +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi.inc @@ -16,7 +16,9 @@ SRC_URI = "https://gstreamer.freedesktop.org/src/${REALPN}/${REALPN}-${PV}.tar.x S = "${WORKDIR}/${REALPN}-${PV}" -inherit autotools pkgconfig gtk-doc +inherit autotools pkgconfig gtk-doc distro_features_check + +REQUIRED_DISTRO_FEATURES ?= "opengl" PACKAGES =+ "${PN}-tests" |