summaryrefslogtreecommitdiffstats
path: root/meta-efl
diff options
context:
space:
mode:
authorManuel Bachmann <manuel.bachmann@iot.bzh>2015-09-22 20:23:37 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2015-10-13 12:27:48 +0200
commit5ea852737c3406494ffefbf71aba2a2c4d25def7 (patch)
tree9c006de5fd77cb4795451cbeda2477b824caba2e /meta-efl
parent5f06593c1fb0d0242fa6605ddef14f19e6536c1a (diff)
downloadmeta-openembedded-5ea852737c3406494ffefbf71aba2a2c4d25def7.tar.gz
efl: support wayland, egl
Allow EFL to build with Wayland support. Allow EFL to build with EGL support (when combined with Wayland support, it effectively achieves GL acceleration under a Wayland compositor). Signed-off-by: Manuel Bachmann <manuel.bachmann@iot.bzh> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-efl')
-rw-r--r--meta-efl/recipes-efl/efl/efl.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-efl/recipes-efl/efl/efl.inc b/meta-efl/recipes-efl/efl/efl.inc
index 1948a800b..3cbd04b36 100644
--- a/meta-efl/recipes-efl/efl/efl.inc
+++ b/meta-efl/recipes-efl/efl/efl.inc
@@ -51,9 +51,11 @@ EXTRA_OECONF_append_class-native = " \
51 --disable-image-loader-dds \ 51 --disable-image-loader-dds \
52" 52"
53 53
54PACKAGECONFIG ?= "opengl-es gstreamer1 pulseaudio luajit" 54PACKAGECONFIG ?= "wayland egl opengl-es gstreamer1 pulseaudio luajit"
55PACKAGECONFIG_class-native = "luajit" 55PACKAGECONFIG_class-native = "luajit"
56 56
57PACKAGECONFIG[wayland] = "--enable-wayland --enable-wayland-ivi-shell,--disable-wayland --disable-wayland-ivi-shell,wayland"
58PACKAGECONFIG[egl] = "--enable-egl,--disable-egl,virtual/egl"
57# sort of tri-state 59# sort of tri-state
58PACKAGECONFIG[opengl-full] = "--with-opengl=full,,virtual/libgl" 60PACKAGECONFIG[opengl-full] = "--with-opengl=full,,virtual/libgl"
59PACKAGECONFIG[opengl-es] = "--with-opengl=es,,virtual/libgles2" 61PACKAGECONFIG[opengl-es] = "--with-opengl=es,,virtual/libgles2"