diff options
author | Derek Foreman <derekf@osg.samsung.com> | 2016-04-11 10:34:23 -0500 |
---|---|---|
committer | Mike Blumenkrantz <zmike@osg.samsung.com> | 2016-04-19 15:11:09 -0400 |
commit | f59c52520de6007990e04dbc5572353a326ada29 (patch) | |
tree | 7d749af2c0a526a56ca28c0449cc51425d7b000b /m4 | |
parent | cd124f938f4ac9c23687d51a017d616f53468b76 (diff) | |
download | efl-f59c52520de6007990e04dbc5572353a326ada29.tar.gz |
build: Bump wayland version dependency
Anything that needed wayland now needs wayland 1.10.0
Diffstat (limited to 'm4')
-rw-r--r-- | m4/evas_check_engine.m4 | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/m4/evas_check_engine.m4 b/m4/evas_check_engine.m4 index e38589c48a..448a210592 100644 --- a/m4/evas_check_engine.m4 +++ b/m4/evas_check_engine.m4 @@ -1,3 +1,4 @@ +AC_DEFUN([REQUIRED_WAYLAND_VERSION], [1.10.0]) dnl use: EVAS_CHECK_ENGINE_DEP_SOFTWARE_XLIB(engine, simple, want_static[, ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]]) @@ -519,7 +520,7 @@ have_dep="no" evas_engine_[]$1[]_cflags="" evas_engine_[]$1[]_libs="" -PKG_CHECK_EXISTS([wayland-client >= 1.3.0], +PKG_CHECK_EXISTS([wayland-client >= REQUIRED_WAYLAND_VERSION], [ have_dep="yes" requirement="wayland-client" @@ -560,7 +561,7 @@ else gl_library="gl" fi -PKG_CHECK_EXISTS([egl ${gl_library} wayland-client >= 1.3.0 wayland-egl], +PKG_CHECK_EXISTS([egl ${gl_library} wayland-client >= REQUIRED_WAYLAND_VERSION wayland-egl], [ have_dep="yes" requirement="egl ${gl_library} wayland-client wayland-egl" @@ -635,10 +636,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 ${gl_library} gbm wayland-client >= 1.3.0], +PKG_CHECK_EXISTS([egl ${gl_library} gbm wayland-client >= REQUIRED_WAYLAND_VERSION], [ have_dep="yes" - requirement="egl ${gl_library} gbm wayland-client >= 1.3.0" + requirement="egl ${gl_library} gbm wayland-client >= REQUIRED_WAYLAND_VERSION" ], [have_dep="no"]) |