stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=07c3edec4abd838fbd0c411e75cda7eef6c60f37

commit 07c3edec4abd838fbd0c411e75cda7eef6c60f37
Author: Stefan Schmidt <[email protected]>
Date:   Wed Apr 30 16:18:14 2014 +0200

    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 630bb9f..c72bb32 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
 

-- 


Reply via email to