diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2017-08-23 10:23:58 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-23 14:12:36 +0100 |
commit | ea03fd82b0709f8f39b77ae665bd5dbdb9a1d58a (patch) | |
tree | 69a624213aa383731956f7533ff75b125a054628 | |
parent | b1e482ae20b9c714f4089d4da6470d041242e441 (diff) | |
download | openembedded-core-ea03fd82b0709f8f39b77ae665bd5dbdb9a1d58a.tar.gz openembedded-core-ea03fd82b0709f8f39b77ae665bd5dbdb9a1d58a.tar.bz2 openembedded-core-ea03fd82b0709f8f39b77ae665bd5dbdb9a1d58a.zip |
libva-utils: add opengl to REQUIRED_DISTRO_FEATURES
libva-utils depends on libva which requires opengl in
DISTRO_FEATURES.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-graphics/libva/libva-utils_1.8.3.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-graphics/libva/libva-utils_1.8.3.bb b/meta/recipes-graphics/libva/libva-utils_1.8.3.bb index 9c2c0d657b..c082c18b52 100644 --- a/meta/recipes-graphics/libva/libva-utils_1.8.3.bb +++ b/meta/recipes-graphics/libva/libva-utils_1.8.3.bb @@ -25,6 +25,9 @@ DEPENDS = "libva" inherit autotools pkgconfig distro_features_check +# depends on libva which requires opengl +REQUIRED_DISTRO_FEATURES = "opengl" + PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'wayland x11', d)}" PACKAGECONFIG[x11] = "--enable-x11,--disable-x11,virtual/libx11 libxext libxfixes" PACKAGECONFIG[wayland] = "--enable-wayland,--disable-wayland,wayland-native wayland" |