summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2019-09-08 11:25:23 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-09-09 11:12:50 +0200
commit5e8ead1792617b9bfaf9ec2992870b348c2bb321 (patch)
tree278d1cddee4620dc69109ba1390a9f0ca9070cbb
parent19a73086082bdf99f6f7b3b389c5e3f0703de449 (diff)
Lower requirement for glibc to 2.17
This was not correctly merged from 5.13 due to the check moving to another file. Task-number: QTBUG-77171 Change-Id: I4388ea9a58509c93574d7953eebb09a62b5ffd63 Reviewed-by: Michal Klocek <michal.klocek@qt.io>
-rw-r--r--src/buildtools/configure.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/buildtools/configure.json b/src/buildtools/configure.json
index 0060acac4..3fc342992 100644
--- a/src/buildtools/configure.json
+++ b/src/buildtools/configure.json
@@ -288,13 +288,13 @@
"type": "detectGn"
},
"webengine-glibc": {
- "label": "glibc > 2.26",
+ "label": "glibc > 2.16",
"type": "compile",
"test": {
"include": "features.h",
"tail": [
- "#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"
]
}