From 07c3edec4abd838fbd0c411e75cda7eef6c60f37 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Wed, 30 Apr 2014 16:18:14 +0200 Subject: [PATCH] configure: Only allow wayland + egl with opengl ES We only support the Wayland EGL engine build with OpenGL ES but not full OpenGL. Reflect this in our configure to avoid compile errors after a successful configure run. Fixes T1202 @fix --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 630bb9fe27..c72bb32dbb 100644 --- a/configure.ac +++ b/configure.ac @@ -1447,7 +1447,7 @@ want_evas_engine_software_gdi="${have_win32}" want_evas_engine_software_ddraw="${have_win32}" want_evas_engine_gl_cocoa="${want_cocoa}" want_evas_engine_wayland_egl="no" -if test "${want_wayland}" = "yes" && test "${want_egl}" = "yes"; then +if test "${want_wayland}" = "yes" && test "${want_egl}" = "yes" && test "${with_opengl}" = "es"; then want_evas_engine_wayland_egl="yes" fi