summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README2
-rw-r--r--config.tests/wayland/main.cpp10
2 files changed, 6 insertions, 6 deletions
diff --git a/README b/README
index 4fd99495b..884aaf391 100644
--- a/README
+++ b/README
@@ -10,7 +10,7 @@ QtWaylandCompositor API:
To build the QtWayland module you need the external dependencies:
xkbcommon 0.2.0 - http://xkbcommon.org/
-wayland 1.6.0 - http://wayland.freedesktop.org/
+wayland 1.8.0 - http://wayland.freedesktop.org/
QtWaylandCompositor supports loading client buffer integrations that don't use
the wayland-egl interfaces. These client buffer integrations are picked up by
diff --git a/config.tests/wayland/main.cpp b/config.tests/wayland/main.cpp
index 9e0002db5..8cab379bf 100644
--- a/config.tests/wayland/main.cpp
+++ b/config.tests/wayland/main.cpp
@@ -53,15 +53,15 @@
int main()
{
#if WAYLAND_VERSION_MAJOR < 1
-# error Wayland 1.6.0 or higher required
+# error Wayland 1.8.0 or higher required
#endif
#if WAYLAND_VERSION_MAJOR == 1
-# if WAYLAND_VERSION_MINOR < 6
-# error Wayland 1.6.0 or higher required
+# if WAYLAND_VERSION_MINOR < 8
+# error Wayland 1.8.0 or higher required
# endif
-# if WAYLAND_VERSION_MINOR == 6
+# if WAYLAND_VERSION_MINOR == 8
# if WAYLAND_VERSION_MICRO < 0
-# error Wayland 1.6.0 or higher required
+# error Wayland 1.8.0 or higher required
# endif
# endif
#endif