summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/xorg-lib/libx11
diff options
context:
space:
mode:
authorRoss Burton <ross@burtonini.com>2021-07-28 12:44:02 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-29 22:33:51 +0100
commitde771b32123566520547edbdcf6373d283103632 (patch)
tree565c5d65d75d4bce675d5538cff004aa1e54d08c /meta/recipes-graphics/xorg-lib/libx11
parentdd5ebf4fdd3ccbe937001a777ad7fcc1e1319e94 (diff)
downloadpoky-de771b32123566520547edbdcf6373d283103632.tar.gz
libx11: fix xkb compilation with _EVDEVK symbols
New xkeyboard-config writes defines that use _EVDEVK(), which makekeys can't parse. Take a patch from upstream to also parse these symbols. [ YOCTO #14489 ] (From OE-Core rev: b63b6ceda629bd101b5889e61a27a6d99843460e) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/xorg-lib/libx11')
-rw-r--r--meta/recipes-graphics/xorg-lib/libx11/keysym.patch46
1 files changed, 46 insertions, 0 deletions
diff --git a/meta/recipes-graphics/xorg-lib/libx11/keysym.patch b/meta/recipes-graphics/xorg-lib/libx11/keysym.patch
new file mode 100644
index 0000000000..f4d7419c02
--- /dev/null
+++ b/meta/recipes-graphics/xorg-lib/libx11/keysym.patch
@@ -0,0 +1,46 @@
1Upstream-Status: Submitted [https://gitlab.freedesktop.org/xorg/lib/libx11/-/merge_requests/79]
2Signed-off-by: Ross Burton <ross.burton@arm.com>
3
4From e92efc63acd7b377faa9e534f4bf52aaa86be2a9 Mon Sep 17 00:00:00 2001
5From: Peter Hutterer <peter.hutterer@who-t.net>
6Date: Tue, 27 Jul 2021 11:46:19 +1000
7Subject: [PATCH] makekeys: handle the new _EVDEVK xorgproto symbols
8
9These keys are all defined through a macro in the form:
10 #define XF86XK_BrightnessAuto _EVDEVK(0x0F4)
11
12The _EVDEVK macro is simply an offset of 0x10081000.
13Let's parse these lines correctly so those keysyms end up in our
14hashtables.
15
16Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
17---
18 src/util/makekeys.c | 12 ++++++++++++
19 1 file changed, 12 insertions(+)
20
21diff --git a/src/util/makekeys.c b/src/util/makekeys.c
22index e847ef4c..4896cc53 100644
23--- a/src/util/makekeys.c
24+++ b/src/util/makekeys.c
25@@ -78,6 +78,18 @@ parse_line(const char *buf, char *key, KeySym *val, char *prefix)
26 return 1;
27 }
28
29+ /* See if we can parse one of the _EVDEVK symbols */
30+ i = sscanf(buf, "#define %127s _EVDEVK(0x%lx)", key, val);
31+ if (i == 2 && (tmp = strstr(key, "XK_"))) {
32+ memcpy(prefix, key, (size_t)(tmp - key));
33+ prefix[tmp - key] = '\0';
34+ tmp += 3;
35+ memmove(key, tmp, strlen(tmp) + 1);
36+
37+ *val += 0x10081000;
38+ return 1;
39+ }
40+
41 /* Now try to catch alias (XK_foo XK_bar) definitions, and resolve them
42 * immediately: if the target is in the form XF86XK_foo, we need to
43 * canonicalise this to XF86foo before we do the lookup. */
44--
45GitLab
46