diff options
author | Peter Seiderer <ps.report@gmx.net> | 2016-02-03 23:01:23 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-02-03 23:26:51 +0100 |
commit | c2174c1ae47ef3db83b453d16c51aa30308c2e14 (patch) | |
tree | d2469e6b93c1e90fd23b8ade9d94d53e0229b6ed /package/qt5/qt5base/0007-big_endian-fix_destformat.patch | |
parent | 7eafaa6f72bba5543c11177c5fe4845196c222fc (diff) | |
download | buildroot-c2174c1ae47ef3db83b453d16c51aa30308c2e14.tar.gz buildroot-c2174c1ae47ef3db83b453d16c51aa30308c2e14.zip |
qt5: bump version to 5.5.1
Reduce hash lists to strongest only (sha256).
Remove upstream committed patches (qt5base):
- 0004-no-gold-linker-for-host-build.patch (see [1], [2])
- 0007-big_endian-fix_destformat.patch (see [3])
- 0008-QtGui-force-image-dir-in-include_path.patch (see [4], [5])
[1] https://bugreports.qt.io/browse/QTBUG-46125
[2] https://codereview.qt-project.org/#/c/113563/
[3] https://codereview.qt-project.org/#/c/120654/
[4] https://bugreports.qt.io/browse/QTBUG-47400
[5] https://codereview.qt-project.org/#/c/122145/
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/qt5/qt5base/0007-big_endian-fix_destformat.patch')
-rw-r--r-- | package/qt5/qt5base/0007-big_endian-fix_destformat.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/package/qt5/qt5base/0007-big_endian-fix_destformat.patch b/package/qt5/qt5base/0007-big_endian-fix_destformat.patch deleted file mode 100644 index b30d22003a..0000000000 --- a/package/qt5/qt5base/0007-big_endian-fix_destformat.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 02ab210ea9bc5ee53fa4f1db2f068ce24272a6cd Mon Sep 17 00:00:00 2001 -From: Allan Sandfeld Jensen <allan.jensen@theqtcompany.com> -Date: Fri, 3 Jul 2015 14:19:02 +0200 -Subject: [PATCH] Fix compile error on big endian - -DestFormat is not defined here but should be Format_RGBX8888 - -Change-Id: Ie33989a6fc31650434281a6b7b0f4806524268af -Reviewed-by: Konstantin Ritt <ritt.ks@gmail.com> -Reviewed-by: Timo Jyrinki <timo.jyrinki@canonical.com> -Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com> - -Upstream-Status: https://codereview.qt-project.org/#/c/120654/ -Signed-off-by: Julien Corjon <corjon.j@ecagroup.com> ---- - src/gui/image/qimage_conversions.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/gui/image/qimage_conversions.cpp b/src/gui/image/qimage_conversions.cpp -index e0ca2c5..02f32aa 100644 ---- a/src/gui/image/qimage_conversions.cpp -+++ b/src/gui/image/qimage_conversions.cpp -@@ -1103,7 +1103,7 @@ static bool mask_alpha_converter_rgbx_inplace(QImageData *data, Qt::ImageConvers - } - rgb_data += pad; - } -- data->format = DestFormat; -+ data->format = QImage::Format_RGBX8888; - return true; - #endif - } --- -2.1.0 - |