From mboxrd@z Thu Jan 1 00:00:00 1970 From: Evgeniy Didin Date: Tue, 19 Sep 2017 12:14:44 +0300 Subject: [Buildroot] [PATCH] qt: Allow enabling of QtWebKit with GCC 6+ Message-ID: <20170919091444.34950-1-didin@synopsys.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net Building Qt with QtWebKit on configuration step there is a check which disables QtWebKit build with GCC 6+. Back in the day nobody thought about building Qt with GCC version greater than 5.x. And now with modern GCCs like 6.x and 7.x this assumption gets in the way. Given in Buildroot today we don't have GCC older than 4.9 it should be safe to remove now meaningless check completely. Signed-off-by: Evgeniy Didin Cc: Alexey Brodkin Cc: Thomas Petazzoni --- configure | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/configure b/configure index 10ad7ca0b0..8771144a65 100755 --- a/configure +++ b/configure @@ -7731,20 +7731,6 @@ case "$XPLATFORM" in canBuildWebKit="no" canBuildQtXmlPatterns="no" ;; - *-g++*) - # Check gcc's version - case "$(${QMAKE_CONF_COMPILER} -dumpversion)" in - 5*|4*|3.4*) - ;; - 3.3*) - canBuildWebKit="no" - ;; - *) - canBuildWebKit="no" - canBuildQtXmlPatterns="no" - ;; - esac - ;; solaris-cc*) # Check the compiler version case `${QMAKE_CONF_COMPILER} -V 2>&1 | awk '{print $4}'` in -- 2.11.0