summaryrefslogtreecommitdiffstats
path: root/config.tests
diff options
context:
space:
mode:
authorGiulio Camuffo <giulio.camuffo@jollamobile.com>2015-02-03 14:37:25 +0200
committerGiulio Camuffo <giulio.camuffo@jollamobile.com>2015-02-03 13:32:33 +0000
commit18c16b7caeafe3fbd745a18e54af0dd0b40e54b3 (patch)
tree035a00fcb5f234a92d87643a4e869edd2e046ab4 /config.tests
parent6966431db6c87c9e7d1bfe0b89a6277eed90be71 (diff)
Update the protocol to 1.4 and raise the required libwayland version
Wayland 1.4 introduces wl_subsurface which is quite an important addition. Change-Id: I48375f60adce556c9989872319f4d073e4a7b13b Reviewed-by: Robin Burchell <robin.burchell@viroteck.net>
Diffstat (limited to 'config.tests')
-rw-r--r--config.tests/wayland/main.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/config.tests/wayland/main.cpp b/config.tests/wayland/main.cpp
index 6094f0883..f99c6b958 100644
--- a/config.tests/wayland/main.cpp
+++ b/config.tests/wayland/main.cpp
@@ -43,15 +43,15 @@
int main()
{
#if WAYLAND_VERSION_MAJOR < 1
-# error Wayland 1.2.0 or higher required
+# error Wayland 1.4.0 or higher required
#endif
#if WAYLAND_VERSION_MAJOR == 1
-# if WAYLAND_VERSION_MINOR < 2
-# error Wayland 1.2.0 or higher required
+# if WAYLAND_VERSION_MINOR < 4
+# error Wayland 1.4.0 or higher required
# endif
-# if WAYLAND_VERSION_MINOR == 2
+# if WAYLAND_VERSION_MINOR == 4
# if WAYLAND_VERSION_MICRO < 0
-# error Wayland 1.2.0 or higher required
+# error Wayland 1.4.0 or higher required
# endif
# endif
#endif