All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] weston: fix typo in EGL/GLES support conditional
@ 2016-04-08 13:35 Gustavo Zacarias
  2016-04-08 13:35 ` [Buildroot] [PATCH 2/2] weston: don't forcibly disable simple EGL clients Gustavo Zacarias
  0 siblings, 1 reply; 3+ messages in thread
From: Gustavo Zacarias @ 2016-04-08 13:35 UTC (permalink / raw)
  To: buildroot

It's BR2_PACKAGE_MESA3D_OPENGL_ES and not
BR2_PACKAGE_MESA3D_OPENGL_GLES, ouch.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/weston/weston.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/weston/weston.mk b/package/weston/weston.mk
index 7aa2130..a0e2358 100644
--- a/package/weston/weston.mk
+++ b/package/weston/weston.mk
@@ -49,7 +49,7 @@ WESTON_CONF_OPTS += --disable-weston-launch
 endif
 
 # Needs wayland-egl, which normally only mesa provides
-ifeq ($(BR2_PACKAGE_MESA3D_OPENGL_ES)$(BR2_PACKAGE_MESA3D_OPENGL_GLES),yy)
+ifeq ($(BR2_PACKAGE_MESA3D_OPENGL_ES)$(BR2_PACKAGE_MESA3D_OPENGL_ES),yy)
 WESTON_CONF_OPTS += --enable-egl
 WESTON_DEPENDENCIES += libegl
 else
-- 
2.7.3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 2/2] weston: don't forcibly disable simple EGL clients
  2016-04-08 13:35 [Buildroot] [PATCH 1/2] weston: fix typo in EGL/GLES support conditional Gustavo Zacarias
@ 2016-04-08 13:35 ` Gustavo Zacarias
  2016-04-08 20:12   ` Peter Korsgaard
  0 siblings, 1 reply; 3+ messages in thread
From: Gustavo Zacarias @ 2016-04-08 13:35 UTC (permalink / raw)
  To: buildroot

Only do so when there's no EGL.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/weston/weston.mk | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/package/weston/weston.mk b/package/weston/weston.mk
index a0e2358..c98689b 100644
--- a/package/weston/weston.mk
+++ b/package/weston/weston.mk
@@ -16,7 +16,6 @@ WESTON_DEPENDENCIES = host-pkgconf wayland wayland-protocols \
 
 WESTON_CONF_OPTS = \
 	--with-dtddir=$(STAGING_DIR)/usr/share/wayland \
-	--disable-simple-egl-clients \
 	--disable-xwayland \
 	--disable-x11-compositor \
 	--disable-wayland-compositor \
@@ -53,7 +52,9 @@ ifeq ($(BR2_PACKAGE_MESA3D_OPENGL_ES)$(BR2_PACKAGE_MESA3D_OPENGL_ES),yy)
 WESTON_CONF_OPTS += --enable-egl
 WESTON_DEPENDENCIES += libegl
 else
-WESTON_CONF_OPTS += --disable-egl
+WESTON_CONF_OPTS += \
+	--disable-egl \
+	--disable-simple-egl-clients
 endif
 
 ifeq ($(BR2_PACKAGE_LIBUNWIND),y)
-- 
2.7.3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 2/2] weston: don't forcibly disable simple EGL clients
  2016-04-08 13:35 ` [Buildroot] [PATCH 2/2] weston: don't forcibly disable simple EGL clients Gustavo Zacarias
@ 2016-04-08 20:12   ` Peter Korsgaard
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2016-04-08 20:12 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Only do so when there's no EGL.
 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-04-08 20:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-08 13:35 [Buildroot] [PATCH 1/2] weston: fix typo in EGL/GLES support conditional Gustavo Zacarias
2016-04-08 13:35 ` [Buildroot] [PATCH 2/2] weston: don't forcibly disable simple EGL clients Gustavo Zacarias
2016-04-08 20:12   ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.