diff options
author | Andreas Müller <schnitzeltony@googlemail.com> | 2013-05-16 23:28:42 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-21 00:18:45 +0100 |
commit | 503c669ca7af397cba0286908f2db2b5d533c0c3 (patch) | |
tree | a1cb27fc4a01bb700b7d87769c223ea8a2b4f400 /meta/recipes-qt/qt4/qt4-native.inc | |
parent | 0948a237ddfcd92dcc4a21e238a963568161f12d (diff) | |
download | poky-503c669ca7af397cba0286908f2db2b5d533c0c3.tar.gz |
qt: fix warning -Wunused-local-typedefs introduced by gcc 4.8
in meta-oe maliit-framework failed with
| In file included from /home/andreas/tmp/oe-core-eglibc/sysroots/overo/usr/include/qt4/QtCore/QtCore:53:0,
| from ../utils/core-utils.cpp:18:
| /home/andreas/tmp/oe-core-eglibc/sysroots/overo/usr/include/qt4/QtCore/qtconcurrentfilter.h: In function 'QtConcurrent::ThreadEngineStarter<void> QtConcurrent::filterInternal(Sequence&, KeepFunctor, Redu
| /home/andreas/tmp/oe-core-eglibc/sysroots/overo/usr/include/qt4/QtCore/qtconcurrentfilter.h:108:47: error: typedef 'Iterator' locally defined but not used [-Werror=unused-local-typedefs]
| typedef typename Sequence::const_iterator Iterator;
| ^
| cc1plus: all warnings being treated as errors
(From OE-Core rev: 4cb93a42bae3dfa53880a9475a92cc046dde5767)
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-qt/qt4/qt4-native.inc')
-rw-r--r-- | meta/recipes-qt/qt4/qt4-native.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-qt/qt4/qt4-native.inc b/meta/recipes-qt/qt4/qt4-native.inc index 7645232208..59c8ab5265 100644 --- a/meta/recipes-qt/qt4/qt4-native.inc +++ b/meta/recipes-qt/qt4/qt4-native.inc | |||
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.LGPL;md5=fbc093901857fcd118f065f900982c24 \ | |||
9 | file://LICENSE.GPL3;md5=6e1694ee338db410417517884918d4d2 \ | 9 | file://LICENSE.GPL3;md5=6e1694ee338db410417517884918d4d2 \ |
10 | file://LGPL_EXCEPTION.txt;md5=0145c4d1b6f96a661c2c139dfb268fb6" | 10 | file://LGPL_EXCEPTION.txt;md5=0145c4d1b6f96a661c2c139dfb268fb6" |
11 | 11 | ||
12 | INC_PR = "r19" | 12 | INC_PR = "r20" |
13 | 13 | ||
14 | inherit native | 14 | inherit native |
15 | 15 | ||
@@ -18,6 +18,7 @@ SRC_URI = "http://releases.qt-project.org/qt4/source/qt-everywhere-opensource-sr | |||
18 | file://0002-qkbdtty_qws-fix-build-with-old-kernel-headers.patch \ | 18 | file://0002-qkbdtty_qws-fix-build-with-old-kernel-headers.patch \ |
19 | file://0003-webkit2-set-OUTPUT_DIR-value-if-empty.patch \ | 19 | file://0003-webkit2-set-OUTPUT_DIR-value-if-empty.patch \ |
20 | file://0021-configure-make-qt4-native-work-with-long-building-pa.patch \ | 20 | file://0021-configure-make-qt4-native-work-with-long-building-pa.patch \ |
21 | file://0025-Remove-unnecessary-typedef-found-by-gcc4-8.patch \ | ||
21 | file://g++.conf \ | 22 | file://g++.conf \ |
22 | file://linux.conf \ | 23 | file://linux.conf \ |
23 | " | 24 | " |