diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2016-05-18 13:40:40 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-21 22:21:29 +0100 |
commit | f16f3d67fd71357de75e64e77414767629565e98 (patch) | |
tree | 02331c5abee15eb0560d9dd37c2691ba6bb52cea | |
parent | b9a484b05e1901c5f612d23a006ee6f887ee2f17 (diff) | |
download | openembedded-core-f16f3d67fd71357de75e64e77414767629565e98.tar.gz openembedded-core-f16f3d67fd71357de75e64e77414767629565e98.tar.bz2 openembedded-core-f16f3d67fd71357de75e64e77414767629565e98.zip |
weston: Remove XWayland dependencies on PACKAGECONFIG
Instead of adding partial dependencies we list the PACKAGECONFIG
options that are required. Those are: X11 and Wayland.
The previous value were redudant with X11 PACKAGECONFIG option and as
it is a requirement, for XWayland, it can be removed to easy
maintenance.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-graphics/wayland/weston_1.10.0.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-graphics/wayland/weston_1.10.0.bb b/meta/recipes-graphics/wayland/weston_1.10.0.bb index 98a5fbadec..29da5541b4 100644 --- a/meta/recipes-graphics/wayland/weston_1.10.0.bb +++ b/meta/recipes-graphics/wayland/weston_1.10.0.bb @@ -71,8 +71,8 @@ PACKAGECONFIG[webp] = "--enable-webp,--disable-webp,libwebp" PACKAGECONFIG[libunwind] = "--enable-libunwind,--disable-libunwind,libunwind" # Weston with systemd-login support PACKAGECONFIG[systemd] = "--enable-systemd-login,--disable-systemd-login,systemd dbus" -# Weston with Xwayland support -PACKAGECONFIG[xwayland] = "--enable-xwayland,--disable-xwayland,libxcb libxcursor cairo" +# Weston with Xwayland support (requires X11 and Wayland) +PACKAGECONFIG[xwayland] = "--enable-xwayland,--disable-xwayland" # colord CMS support PACKAGECONFIG[colord] = "--enable-colord,--disable-colord,colord" # Clients support |