From 5e8ead1792617b9bfaf9ec2992870b348c2bb321 Mon Sep 17 00:00:00 2001
From: Allan Sandfeld Jensen <allan.jensen@qt.io>
Date: Sun, 8 Sep 2019 11:25:23 +0200
Subject: [PATCH] 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>
---
 src/buildtools/configure.json | 6 +++---
 1 file 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"
                 ]
             }
-- 
GitLab