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
This commit is contained in:
Stefan Schmidt 2014-04-30 16:18:14 +02:00
parent a238e091d6
commit 07c3edec4a
1 changed files with 1 additions and 1 deletions

View File

@ -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