diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-11-20 21:20:03 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-11-20 23:12:02 +0100 |
commit | be3fa4bed7b7298c67065090de1ef54e423f29ab (patch) | |
tree | 0d0eb4707070e5a013b7464c5279299bc39e8a9c | |
parent | 5682ba9363d262a67567ed9b0531a414e6aae1bb (diff) | |
download | buildroot-be3fa4bed7b7298c67065090de1ef54e423f29ab.tar.gz buildroot-be3fa4bed7b7298c67065090de1ef54e423f29ab.zip |
weston: egl support needs egl glesv2
Fixes:
- http://autobuild.buildroot.org/results/95db3f4ad4c7ae866b7db4431293c26faa5c1dfc
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/weston/weston.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/weston/weston.mk b/package/weston/weston.mk index efe12bc01e..57d6df4b2d 100644 --- a/package/weston/weston.mk +++ b/package/weston/weston.mk @@ -50,9 +50,9 @@ else WESTON_CONF_OPTS += --disable-weston-launch endif -ifeq ($(BR2_PACKAGE_HAS_LIBEGL_WAYLAND),y) +ifeq ($(BR2_PACKAGE_HAS_LIBEGL_WAYLAND)$(BR2_PACKAGE_HAS_LIBGLES),yy) WESTON_CONF_OPTS += --enable-egl -WESTON_DEPENDENCIES += libegl +WESTON_DEPENDENCIES += libegl libgles else WESTON_CONF_OPTS += \ --disable-egl \ |