diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2021-04-10 11:44:51 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2021-04-10 11:44:51 -0300 |
commit | ff7dbbb6ab83206e509a02039db4aad54c9cf42a (patch) | |
tree | e52c93e9da57a92d9eca691d5455ae667d32a2ac | |
parent | 492999986124b5e960d0e21fc81d341458d6c5ad (diff) | |
download | meta-freescale-master-next.tar.gz |
gstreamer1.0-plugins-bad: Fix build for GPU-less machinesmaster-next
In case we are building for a GPU-less machine (e.g: i.MX6UL) using a
distro without OpenGL support, was triggering a wrong build dependency
chain.
Now, we enable gles2 backend only if the distro has OpenGL support.
Fixes: #684.
Fixes: 61fac596 ("gstreamer1.0-plugins-bad: Let processors with pxp chose the correct Opengl API")
Change-Id: I275299d20065309d753ebc7774ab1fcc5bea7113
-rw-r--r-- | recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.16.3.imx.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.16.3.imx.bb b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.16.3.imx.bb index 8064d430..6925611a 100644 --- a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.16.3.imx.bb +++ b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.16.3.imx.bb | |||
@@ -37,7 +37,7 @@ DEPENDS += "gstreamer1.0-plugins-base" | |||
37 | inherit gobject-introspection | 37 | inherit gobject-introspection |
38 | 38 | ||
39 | PACKAGECONFIG_GL ?= "${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'gl', '', d)}" | 39 | PACKAGECONFIG_GL ?= "${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'gl', '', d)}" |
40 | PACKAGECONFIG_GL_imxpxp = "gles2" | 40 | PACKAGECONFIG_GL_imxpxp = "${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'gles2', '', d)}" |
41 | 41 | ||
42 | PACKAGECONFIG ??= " \ | 42 | PACKAGECONFIG ??= " \ |
43 | ${GSTREAMER_ORC} \ | 43 | ${GSTREAMER_ORC} \ |