diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2019-02-06 15:10:58 +0100 |
---|---|---|
committer | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2019-02-06 15:47:13 +0100 |
commit | 5a8bc8083a5d0e18e34fa70c44c91cbdc5bf0c92 (patch) | |
tree | ac740e0f3b1f0a6785106d11a3cb69b3173476cc /package/qt/0014-Enable-QtWebKit-with-newer-GCC.patch | |
parent | 3e99c8418af904b14b01455d68c84d7b5afd261f (diff) | |
download | buildroot-5a8bc8083a5d0e18e34fa70c44c91cbdc5bf0c92.tar.gz buildroot-5a8bc8083a5d0e18e34fa70c44c91cbdc5bf0c92.zip |
package/qt: remove package
Qt4 has been marked obsolete for close to 1 year, since commit 3538b5fb10
(qt: mark as obsolete) and is no longer supported upstream since December
2015:
https://blog.qt.io/blog/2015/05/26/qt-4-8-7-released/
So now finally remove it as the in tree users have been removed.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Diffstat (limited to 'package/qt/0014-Enable-QtWebKit-with-newer-GCC.patch')
-rw-r--r-- | package/qt/0014-Enable-QtWebKit-with-newer-GCC.patch | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/package/qt/0014-Enable-QtWebKit-with-newer-GCC.patch b/package/qt/0014-Enable-QtWebKit-with-newer-GCC.patch deleted file mode 100644 index 1e555e721f..0000000000 --- a/package/qt/0014-Enable-QtWebKit-with-newer-GCC.patch +++ /dev/null @@ -1,50 +0,0 @@ -From f566411fb314b7e4ab01f28e25e942cfaf8c59b7 Mon Sep 17 00:00:00 2001 -From: Evgeniy Didin <didin@synopsys.com> -Date: Fri, 15 Sep 2017 19:43:48 +0300 -Subject: [PATCH] qt: Allow enabling of QtWebKit with GCC 6+ - -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 <didin@synopsys.com> -Cc: Alexey Brodkin <abrodkin@synopsys.com> -Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> - ---- - 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 - |