summaryrefslogtreecommitdiffstats
path: root/config.tests
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@qt.io>2019-07-25 07:58:22 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-07-29 14:54:15 +0200
commitedbe8a4b07d31807e3c298e3bd018353ed77a107 (patch)
tree64318d791c1a292aad0e8ab6bf2ca5d45ead42c6 /config.tests
parent83f83f68174c27ca984d84aacc323c209548ba43 (diff)
Lower requirement for glibc to 2.17
Fixes: QTBUG-77171 Change-Id: I9eb5a34adbc62c8738ba5ffdf315ccf056da7b98 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'config.tests')
-rw-r--r--config.tests/glibc/glibc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.tests/glibc/glibc.cpp b/config.tests/glibc/glibc.cpp
index e78994b64..3cdd77f44 100644
--- a/config.tests/glibc/glibc.cpp
+++ b/config.tests/glibc/glibc.cpp
@@ -28,8 +28,8 @@
#include <features.h>
-#if __GLIBC__ < 2 || __GLIBC_MINOR__ < 27
-#error glibc versions below 2.27 are not supported
+#if __GLIBC__ < 2 || __GLIBC_MINOR__ < 17
+#error glibc versions below 2.17 are not supported
#endif
int main(int , char **) {