summaryrefslogtreecommitdiffstats
path: root/meta/recipes-qt/qt4/qt4-4.8.1/fix_qkbdtty_qws.patch
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2012-09-26 20:13:11 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-10-02 17:19:27 +0100
commitb0862a5cf2ba2878e7fefa5193acae3a82ea46fd (patch)
tree2281286b22e424616e1889a6077fcd6d5415dbec /meta/recipes-qt/qt4/qt4-4.8.1/fix_qkbdtty_qws.patch
parentee14710dbf1c4383ca20851529684f164883cc80 (diff)
downloadpoky-b0862a5cf2ba2878e7fefa5193acae3a82ea46fd.tar.gz
qt4: move patches from files to qt4-4.8.1
* faster lookup in FILESPATH as small bonus (From OE-Core rev: 8cc54d2d154b2ed9f931da39d75dc9c135f5e26d) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-qt/qt4/qt4-4.8.1/fix_qkbdtty_qws.patch')
-rw-r--r--meta/recipes-qt/qt4/qt4-4.8.1/fix_qkbdtty_qws.patch37
1 files changed, 37 insertions, 0 deletions
diff --git a/meta/recipes-qt/qt4/qt4-4.8.1/fix_qkbdtty_qws.patch b/meta/recipes-qt/qt4/qt4-4.8.1/fix_qkbdtty_qws.patch
new file mode 100644
index 0000000000..c2aed5ca0f
--- /dev/null
+++ b/meta/recipes-qt/qt4/qt4-4.8.1/fix_qkbdtty_qws.patch
@@ -0,0 +1,37 @@
1Upstream-Status: Pending
2
3This issue is that with C++ compiler process an old version of kernel
4header file, coincidently that file has a variable named 'new':
5
6* 'embedded/qkbdtty_qws.cpp' include 'linux/vt.h';
7* '/usr/include/linux/vt.h' has below code on SLED-11.x:
8 + unsigned int new;
9
10On mostly hosts it has been changed to: new -> newev.
11
12Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
13=======================================
14diff --git a/src/gui/embedded/qkbdtty_qws.cpp b/src/gui/embedded/qkbdtty_qws.cpp
15--- a/src/gui/embedded/qkbdtty_qws.cpp 2012-07-27 13:16:58.420198350 +0800
16+++ b/src/gui/embedded/qkbdtty_qws.cpp 2012-07-27 13:24:43.924191127 +0800
17@@ -54,8 +54,20 @@
18
19 #if defined Q_OS_LINUX
20 # include <linux/kd.h>
21+
22+/* Workaround kernel headers using "new" as variable name. The problem
23+ is specific to SLED-11, other distros use "newev" rather than "new" */
24+#ifdef __cplusplus
25+#warning "workaround kernel headers using new as variable name on SLED 11"
26+#define new newev
27+#endif
28+
29 # include <linux/vt.h> //TODO: move vt handling somewhere else (QLinuxFbScreen?)
30
31+#ifdef __cplusplus
32+#undef new
33+#endif
34+
35 # include "qscreen_qws.h"
36 # include "qwindowsystem_qws.h"
37 # include "qapplication.h"