diff options
Diffstat (limited to 'meta/recipes-qt')
-rw-r--r-- | meta/recipes-qt/qt4/qt-4.8.0.inc | 1 | ||||
-rw-r--r-- | meta/recipes-qt/qt4/qt-4.8.0/configure_oe_compiler.patch | 31 | ||||
-rw-r--r-- | meta/recipes-qt/qt4/qt4-embedded_4.8.0.bb | 2 |
3 files changed, 33 insertions, 1 deletions
diff --git a/meta/recipes-qt/qt4/qt-4.8.0.inc b/meta/recipes-qt/qt4/qt-4.8.0.inc index 2addbb211f..532f1ff40c 100644 --- a/meta/recipes-qt/qt4/qt-4.8.0.inc +++ b/meta/recipes-qt/qt4/qt-4.8.0.inc | |||
@@ -14,6 +14,7 @@ SRC_URI = "http://get.qt.nokia.com/qt/source/qt-everywhere-opensource-src-${PV}. | |||
14 | file://fix-translations.patch \ | 14 | file://fix-translations.patch \ |
15 | file://add_nostrip_for_debug_packages.diff \ | 15 | file://add_nostrip_for_debug_packages.diff \ |
16 | file://qmake_cxx_eval.patch \ | 16 | file://qmake_cxx_eval.patch \ |
17 | file://configure_oe_compiler.patch \ | ||
17 | file://g++.conf \ | 18 | file://g++.conf \ |
18 | file://linux.conf \ | 19 | file://linux.conf \ |
19 | " | 20 | " |
diff --git a/meta/recipes-qt/qt4/qt-4.8.0/configure_oe_compiler.patch b/meta/recipes-qt/qt4/qt-4.8.0/configure_oe_compiler.patch new file mode 100644 index 0000000000..d455d0acfe --- /dev/null +++ b/meta/recipes-qt/qt4/qt-4.8.0/configure_oe_compiler.patch | |||
@@ -0,0 +1,31 @@ | |||
1 | Ensure we identify the compiler as g++ in configure | ||
2 | |||
3 | Our PLATFORM in OE is ${TARGET_OS}-oe-g++, and previously the configure | ||
4 | script was interpreting from this that the compiler was "oe-g++" and thus | ||
5 | g++ specific checks were not being run since this string did not match; | ||
6 | among other things this resulted in a compiler version check in the | ||
7 | QtWebKit build code not working, and hence the following error at build | ||
8 | time: | ||
9 | |||
10 | ./wtf/NullPtr.h:48:1: error: identifier 'nullptr' will become a keyword in C++0x [-Werror=c++0x-compat] | ||
11 | |||
12 | The easiest thing since our PLATFORM is entirely artificial is to just | ||
13 | force COMPILER to "g++" in the configure script if it is detected as | ||
14 | "oe-g++". | ||
15 | |||
16 | Upstream-Status: Inappropriate [configuration] | ||
17 | |||
18 | Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> | ||
19 | |||
20 | --- qt-everywhere-opensource-src-4.8.0.orig/configure | ||
21 | +++ qt-everywhere-opensource-src-4.8.0/configure | ||
22 | @@ -7444,6 +7444,9 @@ elif [ "$XPLATFORM" != "$PLATFORM" ]; th | ||
23 | else | ||
24 | COMPILER=`echo $PLATFORM | cut -f 2- -d-` | ||
25 | fi | ||
26 | +case $COMPILER in | ||
27 | + *oe-g++) COMPILER="g++" ;; | ||
28 | +esac | ||
29 | if [ "$CFG_EXCEPTIONS" = "unspecified" -a "$PLATFORM_QWS" = "yes" ]; then | ||
30 | CFG_EXCEPTIONS=no | ||
31 | fi | ||
diff --git a/meta/recipes-qt/qt4/qt4-embedded_4.8.0.bb b/meta/recipes-qt/qt4/qt4-embedded_4.8.0.bb index 5c1c97eeac..efbc02ae03 100644 --- a/meta/recipes-qt/qt4/qt4-embedded_4.8.0.bb +++ b/meta/recipes-qt/qt4/qt4-embedded_4.8.0.bb | |||
@@ -1,7 +1,7 @@ | |||
1 | require qt-${PV}.inc | 1 | require qt-${PV}.inc |
2 | require qt4-embedded.inc | 2 | require qt4-embedded.inc |
3 | 3 | ||
4 | PR = "${INC_PR}.0" | 4 | PR = "${INC_PR}.1" |
5 | 5 | ||
6 | DEFAULT_PREFERENCE = "-1" | 6 | DEFAULT_PREFERENCE = "-1" |
7 | 7 | ||