summaryrefslogtreecommitdiffstats
path: root/config.tests
diff options
context:
space:
mode:
authorGiulio Camuffo <giulio.camuffo@jollamobile.com>2014-02-27 12:51:41 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-28 15:27:47 +0100
commitd30758c987ff7899872dd0021a740e67f0f470e6 (patch)
tree42ea4fcc7fcbcc4d84b49ec2b2315a9112c72960 /config.tests
parent573d0ee5ba86d99095f217ea9e19172bfc5e75fd (diff)
Change the minimum required Wayland version back to 1.2
As discussed, Wayland 1.3 is not common in distributions yet, and that is a problem for the C.I. machines. Change-Id: Iec5c6d8ae1d1a50199f66d45ca9269694db78efe Reviewed-by: Andrew Knight <andrew.knight@digia.com> Reviewed-by: Robin Burchell <robin+qt@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 fb9915305..6094f0883 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.3.0 or higher required
+# error Wayland 1.2.0 or higher required
#endif
#if WAYLAND_VERSION_MAJOR == 1
-# if WAYLAND_VERSION_MINOR < 3
-# error Wayland 1.3.0 or higher required
+# if WAYLAND_VERSION_MINOR < 2
+# error Wayland 1.2.0 or higher required
# endif
-# if WAYLAND_VERSION_MINOR == 3
+# if WAYLAND_VERSION_MINOR == 2
# if WAYLAND_VERSION_MICRO < 0
-# error Wayland 1.3.0 or higher required
+# error Wayland 1.2.0 or higher required
# endif
# endif
#endif