diff options
author | Wenzong Fan <wenzong.fan@windriver.com> | 2015-10-21 04:23:55 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-11-16 11:39:27 +0000 |
commit | d3da00648ccd4b281871efdd1be7790fe77e5d1e (patch) | |
tree | b29a775270802af68a1bcd80b1256f93027911ee /meta/recipes-graphics/eglinfo | |
parent | 63690f0914786c941af760735f60135a717d9e5d (diff) | |
download | poky-d3da00648ccd4b281871efdd1be7790fe77e5d1e.tar.gz |
recipes: add distro_features_check for some packages
* The packages that depends on gtk+3 require any of distro features
from ${GTK3DISTROFEATURES}
* The packages that depends on virtual/egl, virtual/libgl ... require
distro feature 'opengl'
(From OE-Core rev: 3edf08b38b0af93cef0933b061349264dc86d54c)
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/eglinfo')
-rw-r--r-- | meta/recipes-graphics/eglinfo/eglinfo.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-graphics/eglinfo/eglinfo.inc b/meta/recipes-graphics/eglinfo/eglinfo.inc index b87688af72..fb891755db 100644 --- a/meta/recipes-graphics/eglinfo/eglinfo.inc +++ b/meta/recipes-graphics/eglinfo/eglinfo.inc | |||
@@ -11,7 +11,9 @@ SRCREV = "4b317648ec6cf39556a9e5d8078f605bc0edd5de" | |||
11 | 11 | ||
12 | S = "${WORKDIR}/git" | 12 | S = "${WORKDIR}/git" |
13 | 13 | ||
14 | inherit waf | 14 | inherit waf distro_features_check |
15 | # depends on virtual/egl | ||
16 | REQUIRED_DISTRO_FEATURES ?= "opengl" | ||
15 | 17 | ||
16 | # BSP layers should add .bbappend files for the -x11 and -fb .bb recipes, which | 18 | # BSP layers should add .bbappend files for the -x11 and -fb .bb recipes, which |
17 | # append the respective EGL/OpenGLES/OpenVG libraries to DEPENDS and set | 19 | # append the respective EGL/OpenGLES/OpenVG libraries to DEPENDS and set |