summaryrefslogtreecommitdiffstats
path: root/config.tests
diff options
context:
space:
mode:
Diffstat (limited to 'config.tests')
-rw-r--r--config.tests/wayland/main.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/config.tests/wayland/main.cpp b/config.tests/wayland/main.cpp
index e247df3f8..de4e9edbb 100644
--- a/config.tests/wayland/main.cpp
+++ b/config.tests/wayland/main.cpp
@@ -43,12 +43,15 @@
int main()
{
#if WAYLAND_VERSION_MAJOR < 1
-# error Wayland 1.0.3 or higher required
+# error Wayland 1.1.0 or higher required
#endif
-#if WAYLAND_VERSION_MINOR == 0
-# if WAYLAND_VERSION_MICRO < 3
-# error Wayland 1.0.3 or higher required
-# endif
+#if WAYLAND_VERSION_MINOR < 1
+# error Wayland 1.1.0 or higher required
#endif
+#if WAYLAND_VERSION_MINOR < 2
+//# if WAYLAND_VERSION_MICRO < 0
+//# error Wayland 1.1.0 or higher required
+//# endif
+# endif
return 0;
}