From cf1bd7e1babd46bb27d7e103cb8a1ecde5e2fd03 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Tue, 4 Aug 2015 11:38:21 -0400 Subject: [PATCH] evas_check_engine: Remove tests for specific version of EGL Summary: As per cedric, remove tests for egl specific version(s) when building wayland engines. @fix Signed-off-by: Chris Michael --- m4/evas_check_engine.m4 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/m4/evas_check_engine.m4 b/m4/evas_check_engine.m4 index 8165aa2344..55135d17d7 100644 --- a/m4/evas_check_engine.m4 +++ b/m4/evas_check_engine.m4 @@ -560,10 +560,10 @@ else gl_library="gl" fi -PKG_CHECK_EXISTS([egl >= 7.10 ${gl_library} wayland-client >= 1.3.0 wayland-egl >= 9.2.0], +PKG_CHECK_EXISTS([egl ${gl_library} wayland-client >= 1.3.0 wayland-egl >= 9.2.0], [ have_dep="yes" - requirement="egl >= 7.10 ${gl_library} wayland-client wayland-egl" + requirement="egl ${gl_library} wayland-client wayland-egl" ], [have_dep="no"]) @@ -635,10 +635,10 @@ else AC_MSG_ERROR([We currently do not support GL DRM without OpenGL ES. Please consider OpenGL ES if you want to use it.]) fi -PKG_CHECK_EXISTS([egl >= 7.10 ${gl_library} gbm wayland-client >= 1.3.0], +PKG_CHECK_EXISTS([egl ${gl_library} gbm wayland-client >= 1.3.0], [ have_dep="yes" - requirement="egl >= 7.10 ${gl_library} gbm wayland-client >= 1.3.0" + requirement="egl ${gl_library} gbm wayland-client >= 1.3.0" ], [have_dep="no"])