summaryrefslogtreecommitdiffstats
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
parent83f83f68174c27ca984d84aacc323c209548ba43 (diff)
Lower requirement for glibc to 2.17
Fixes: QTBUG-77171 Change-Id: I9eb5a34adbc62c8738ba5ffdf315ccf056da7b98 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
-rw-r--r--config.tests/glibc/glibc.cpp4
m---------src/3rdparty0
-rw-r--r--src/core/configure.json2
3 files changed, 3 insertions, 3 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 **) {
diff --git a/src/3rdparty b/src/3rdparty
-Subproject b15c6b71b401c8650451fd877f10fca8e96618a
+Subproject 96dfb9878e90486353d994ca016c27c7c1f1b6b
diff --git a/src/core/configure.json b/src/core/configure.json
index 66e39ddc2..be686850b 100644
--- a/src/core/configure.json
+++ b/src/core/configure.json
@@ -313,7 +313,7 @@
"type": "compile"
},
"webengine-glibc": {
- "label": "glibc > 2.26",
+ "label": "glibc > 2.16",
"type": "compile",
"test": "glibc"
},