diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2014-12-29 10:25:55 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-01-16 23:08:20 +0000 |
commit | 5b7371b832f594aaeb3564fd4a64d8583e337b67 (patch) | |
tree | 8365778b685a0e1e8d2ba3c25f8323bb11722285 /meta/recipes-qt | |
parent | ac35e3cabd3217ba0cb38a003a747e7bfa78fd72 (diff) | |
download | poky-5b7371b832f594aaeb3564fd4a64d8583e337b67.tar.gz |
qt4-embedded: support c++0x stand for directfb
While directfd upgrade to 1.7.6, it always includes directfb++ utils
when C++ is used and set c++0x as c++ standard.
(In git://git.directfb.org/git/directfb/core/DirectFB.git
commit b444bcae3197be9faf883460dcc239ef757d5922, and commit
522beeb76f2a8d2dee30d928d2a5955bd06cf25c)
The directfd in qt4-embedded is c++, and there was a build failure:
...
| qdirectfbwindowsurface.cpp:336:69: error: in C++98 'rect' must be
initialized by constructor, not by '{...}'
| const DFBRectangle rect = { r.x(), r.y(), r.width(), r.height() };
...
The g++ used c++98 as default c++ standard, we should
explicitly set c++0x for directfd in qt4-embedded.
(From OE-Core rev: 833cb0e47f7542a67bdf943cede1754b7a20c1d9)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-qt')
-rw-r--r-- | meta/recipes-qt/qt4/qt4-4.8.6/0033-configure-support-c-0x-standard-for-directfd.patch | 40 | ||||
-rw-r--r-- | meta/recipes-qt/qt4/qt4-embedded.inc | 4 |
2 files changed, 43 insertions, 1 deletions
diff --git a/meta/recipes-qt/qt4/qt4-4.8.6/0033-configure-support-c-0x-standard-for-directfd.patch b/meta/recipes-qt/qt4/qt4-4.8.6/0033-configure-support-c-0x-standard-for-directfd.patch new file mode 100644 index 0000000000..f3face5755 --- /dev/null +++ b/meta/recipes-qt/qt4/qt4-4.8.6/0033-configure-support-c-0x-standard-for-directfd.patch | |||
@@ -0,0 +1,40 @@ | |||
1 | configure: support c++0x standard for directfd | ||
2 | |||
3 | While directfd upgrade to 1.7.6, it always includes directfb++ utils | ||
4 | when C++ is used and set c++0x as c++ standard. | ||
5 | (In git://git.directfb.org/git/directfb/core/DirectFB.git | ||
6 | commit b444bcae3197be9faf883460dcc239ef757d5922, and commit | ||
7 | 522beeb76f2a8d2dee30d928d2a5955bd06cf25c) | ||
8 | |||
9 | The directfd in qt4 is c++, and there was a build failure: | ||
10 | ... | ||
11 | | qdirectfbwindowsurface.cpp:336:69: error: in C++98 'rect' must be | ||
12 | initialized by constructor, not by '{...}' | ||
13 | | const DFBRectangle rect = { r.x(), r.y(), r.width(), r.height() }; | ||
14 | ... | ||
15 | |||
16 | The g++ used c++98 as default c++ standard, we should | ||
17 | explicitly set c++0x for directfd in qt4. | ||
18 | |||
19 | Upstream-Status: Pending | ||
20 | |||
21 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
22 | --- | ||
23 | configure | 1 + | ||
24 | 1 file changed, 1 insertion(+) | ||
25 | |||
26 | diff --git a/configure b/configure | ||
27 | index 5724bd6..ecc2f8b 100755 | ||
28 | --- a/configure | ||
29 | +++ b/configure | ||
30 | @@ -6656,6 +6656,7 @@ if [ "$PLATFORM_QWS" = "yes" ]; then | ||
31 | if [ "${screen}" = "directfb" ] && [ "${CFG_CONFIGURE_EXIT_ON_ERROR}" = "yes" ]; then | ||
32 | if test -n "$PKG_CONFIG" && "$PKG_CONFIG" --exists directfb 2>/dev/null; then | ||
33 | QT_CFLAGS_DIRECTFB=`$PKG_CONFIG --cflags directfb 2>/dev/null` | ||
34 | + QT_CFLAGS_DIRECTFB="$QT_CFLAGS_DIRECTFB -std=c++0x" | ||
35 | QT_LIBS_DIRECTFB=`$PKG_CONFIG --libs directfb 2>/dev/null` | ||
36 | elif directfb-config --version >/dev/null 2>&1; then | ||
37 | QT_CFLAGS_DIRECTFB=`directfb-config --cflags 2>/dev/null` | ||
38 | -- | ||
39 | 1.9.1 | ||
40 | |||
diff --git a/meta/recipes-qt/qt4/qt4-embedded.inc b/meta/recipes-qt/qt4/qt4-embedded.inc index e87de4b379..ef5cf2cf24 100644 --- a/meta/recipes-qt/qt4/qt4-embedded.inc +++ b/meta/recipes-qt/qt4/qt4-embedded.inc | |||
@@ -9,7 +9,9 @@ QT4EDEPENDS = "" | |||
9 | QT_BASE_LIB ?= "libqt-embedded" | 9 | QT_BASE_LIB ?= "libqt-embedded" |
10 | 10 | ||
11 | # Set necessary variables in the profile | 11 | # Set necessary variables in the profile |
12 | SRC_URI += "file://qte.sh" | 12 | SRC_URI += "file://qte.sh \ |
13 | file://0033-configure-support-c-0x-standard-for-directfd.patch \ | ||
14 | " | ||
13 | 15 | ||
14 | QT_EMBEDDED_FLAGS ?= " \ | 16 | QT_EMBEDDED_FLAGS ?= " \ |
15 | -embedded $QT_ARCH \ | 17 | -embedded $QT_ARCH \ |