diff options
author | Prabhu Sundararaj <prabhu.sundararaj@freescale.com> | 2014-03-28 11:02:37 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-30 10:02:54 +0100 |
commit | faa86f0cda47f3ea6eeaf4c3fd3cf95a286f4571 (patch) | |
tree | b5ae9233abf787647083325827035c8cc94af57e /meta/recipes-graphics/wayland | |
parent | dfdb397db5865c3287cd9ccb5ea9a336eb77ca90 (diff) | |
download | openembedded-core-faa86f0cda47f3ea6eeaf4c3fd3cf95a286f4571.tar.gz openembedded-core-faa86f0cda47f3ea6eeaf4c3fd3cf95a286f4571.tar.bz2 openembedded-core-faa86f0cda47f3ea6eeaf4c3fd3cf95a286f4571.zip |
weston : refactor to identify EGL, cairoglesv2 support
Signed-off-by: Prabhu Sundararaj <prabhu.sundararaj@freescale.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/wayland')
-rw-r--r-- | meta/recipes-graphics/wayland/weston_1.4.0.bb | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/meta/recipes-graphics/wayland/weston_1.4.0.bb b/meta/recipes-graphics/wayland/weston_1.4.0.bb index e0c354d59f..521316659c 100644 --- a/meta/recipes-graphics/wayland/weston_1.4.0.bb +++ b/meta/recipes-graphics/wayland/weston_1.4.0.bb @@ -23,13 +23,12 @@ EXTRA_OECONF = "--enable-setuid-install \ --enable-simple-clients \ --enable-clients \ --enable-demo-clients-install \ - --disable-simple-egl-clients \ --disable-libunwind \ --disable-rpi-compositor \ --disable-rdp-compositor" -PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'wayland', 'kms fbdev wayland', '', d)} \ +PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'wayland', 'kms fbdev wayland egl', '', d)} \ ${@base_contains('DISTRO_FEATURES', 'x11', 'x11', '', d)} \ ${@base_contains('DISTRO_FEATURES', 'pam', 'launch', '', d)} \ " @@ -39,7 +38,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-egl --disable-wayland-compositor,virtual/mesa" +PACKAGECONFIG[wayland] = "--enable-wayland-compositor,--disable-wayland-compositor,virtual/mesa" # Weston on X11 PACKAGECONFIG[x11] = "--enable-x11-compositor,--disable-x11-compositor,virtual/libx11 libxcb libxcb libxcursor cairo" # Headless Weston @@ -50,6 +49,10 @@ PACKAGECONFIG[fbdev] = "--enable-fbdev-compositor,--disable-fbdev-compositor,ude PACKAGECONFIG[launch] = "--enable-weston-launch,--disable-weston-launch,libpam drm" # VA-API desktop recorder PACKAGECONFIG[vaapi] = "--enable-vaapi-recorder,--disable-vaapi-recorder,libva" +# Weston with EGL support +PACKAGECONFIG[egl] = "--enable-egl --enable-simple-egl-clients,--disable-egl --disable-simple-egl-clients,virtual/egl" +# Weston with cairo glesv2 support +PACKAGECONFIG[cairo-glesv2] = "--with-cairo-glesv2,--with-cairo=image,cairo" do_install_append() { # Weston doesn't need the .la files to load modules, so wipe them |