summaryrefslogtreecommitdiffstats
path: root/package/qt/qt-4.5.3-fix-qt-zlib-build.patch
diff options
context:
space:
mode:
authorFrederik Vannoote <frederik.vannoote@barco.com>2010-04-02 15:33:28 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2010-04-02 15:34:22 +0200
commitd5a3fa6867b75971b8d713653e0665ce0ef9f267 (patch)
tree225231822c62d582d04554b94f9a0594cb9ba575 /package/qt/qt-4.5.3-fix-qt-zlib-build.patch
parentd6a0d6f3091fcaf29b6fd96c31bc39f27610ddb3 (diff)
downloadbuildroot-novena-d5a3fa6867b75971b8d713653e0665ce0ef9f267.tar.gz
buildroot-novena-d5a3fa6867b75971b8d713653e0665ce0ef9f267.zip
qt: bump version
qt 4.6.x has a number of new configure options, and needs a patch to work on uClibc. Signed-off-by: Frederik Vannoote <frederik.vannoote@barco.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/qt/qt-4.5.3-fix-qt-zlib-build.patch')
-rw-r--r--package/qt/qt-4.5.3-fix-qt-zlib-build.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/package/qt/qt-4.5.3-fix-qt-zlib-build.patch b/package/qt/qt-4.5.3-fix-qt-zlib-build.patch
deleted file mode 100644
index 47fc92f27..000000000
--- a/package/qt/qt-4.5.3-fix-qt-zlib-build.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-When QT is compiled in qt-zlib mode, compilation of
-src/gui/painting/qprintengine_pdf.cpp fails because zlib.h is not
-found. The following patch adds the internal QT zlib directory to the
-include path to fix this issue.
-
----
- src/gui/painting/painting.pri | 3 +++
- 1 file changed, 3 insertions(+)
-
-Index: qt-embedded-linux-opensource-src-4.5.3/src/gui/painting/painting.pri
-===================================================================
---- qt-embedded-linux-opensource-src-4.5.3.orig/src/gui/painting/painting.pri
-+++ qt-embedded-linux-opensource-src-4.5.3/src/gui/painting/painting.pri
-@@ -367,3 +367,6 @@
- SOURCES += painting/qwindowsurface_d3d.cpp
- }
-
-+contains(QT_CONFIG, zlib) {
-+ INCLUDEPATH += ../3rdparty/zlib
-+}