diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2014-02-22 15:18:34 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-28 13:52:44 +0000 |
commit | 1a7c5d7ba9ad9617d030f60eaf8e61bd599666f6 (patch) | |
tree | cad2f9c5fc7196fe25323496d61df584fc98babd /meta/recipes-graphics/wayland | |
parent | 1b972c56ce0fa98f4effb691f1c312ce8d19ebcd (diff) | |
download | openembedded-core-1a7c5d7ba9ad9617d030f60eaf8e61bd599666f6.tar.gz openembedded-core-1a7c5d7ba9ad9617d030f60eaf8e61bd599666f6.tar.bz2 openembedded-core-1a7c5d7ba9ad9617d030f60eaf8e61bd599666f6.zip |
weston: fix build without wayland in distro_features
There was a configure error when build weston without wayland in
distro_features:
configure: error: Package requirements (egl >= 7.10 glesv2 wayland-client wayland-egl) were not met:
No package 'wayland-egl' found
[YOCTO #5867]
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Diffstat (limited to 'meta/recipes-graphics/wayland')
-rw-r--r-- | meta/recipes-graphics/wayland/weston_1.4.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/wayland/weston_1.4.0.bb b/meta/recipes-graphics/wayland/weston_1.4.0.bb index 5c389a0e04..e0c354d59f 100644 --- a/meta/recipes-graphics/wayland/weston_1.4.0.bb +++ b/meta/recipes-graphics/wayland/weston_1.4.0.bb @@ -39,7 +39,7 @@ PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'wayland', 'kms fbdev way # Weston on KMS PACKAGECONFIG[kms] = "--enable-drm-compositor,--disable-drm-compositor,drm udev virtual/mesa mtdev" # Weston on Wayland (nested Weston) -PACKAGECONFIG[wayland] = "--enable-wayland-compositor,--disable-wayland-compositor,virtual/mesa" +PACKAGECONFIG[wayland] = "--enable-wayland-compositor,--disable-egl --disable-wayland-compositor,virtual/mesa" # Weston on X11 PACKAGECONFIG[x11] = "--enable-x11-compositor,--disable-x11-compositor,virtual/libx11 libxcb libxcb libxcursor cairo" # Headless Weston |