From 31e8a66c6d858aa5698529de44ee075ffb0ebdb2 Mon Sep 17 00:00:00 2001
From: Allan Sandfeld Jensen <allan.jensen@qt.io>
Date: Tue, 4 Apr 2017 13:01:05 +0200
Subject: [PATCH] Re-enable building with gcc 4.9.1

The code that gcc 4.9.1 stumpled on was rewritten in Chromium 56, so
we should try and let compiler build webengine again.

Change-Id: I9ccec7e93aaa384aefdf338e3822b78e0dc494f2
Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
---
 tools/qmake/mkspecs/features/functions.prf | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/tools/qmake/mkspecs/features/functions.prf b/tools/qmake/mkspecs/features/functions.prf
index 1a1f3cf77..53194e421 100644
--- a/tools/qmake/mkspecs/features/functions.prf
+++ b/tools/qmake/mkspecs/features/functions.prf
@@ -221,10 +221,6 @@ defineTest(isSanitizerLinuxClangVersionSupported) {
 }
 
 defineTest(isGCCVersionSupported) {
-  equals(QT_GCC_MAJOR_VERSION, 4):equals(QT_GCC_MINOR_VERSION, 9):lessThan(QT_GCC_PATCH_VERSION, 2) {
-    skipBuild("Gcc 4.9.1 fails to compile QtWebEngine, please use another gcc version.")
-    return(false)
-  }
   # The below will work for gcc 4.7 and up and also match gcc 5
   greaterThan(QT_GCC_MINOR_VERSION, 6):return(true)
   greaterThan(QT_GCC_MAJOR_VERSION, 4):return(true)
-- 
GitLab