Parse the new _EVDEVK symbols
This commit is contained in:
parent
cc47291a26
commit
3d9ed4febd
43
0001-makekeys-handle-the-new-_EVDEVK-xorgproto-symbols.patch
Normal file
43
0001-makekeys-handle-the-new-_EVDEVK-xorgproto-symbols.patch
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
From e92efc63acd7b377faa9e534f4bf52aaa86be2a9 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Peter Hutterer <peter.hutterer@who-t.net>
|
||||||
|
Date: Tue, 27 Jul 2021 11:46:19 +1000
|
||||||
|
Subject: [PATCH libX11] makekeys: handle the new _EVDEVK xorgproto symbols
|
||||||
|
|
||||||
|
These keys are all defined through a macro in the form:
|
||||||
|
#define XF86XK_BrightnessAuto _EVDEVK(0x0F4)
|
||||||
|
|
||||||
|
The _EVDEVK macro is simply an offset of 0x10081000.
|
||||||
|
Let's parse these lines correctly so those keysyms end up in our
|
||||||
|
hashtables.
|
||||||
|
|
||||||
|
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
|
||||||
|
---
|
||||||
|
src/util/makekeys.c | 12 ++++++++++++
|
||||||
|
1 file changed, 12 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/src/util/makekeys.c b/src/util/makekeys.c
|
||||||
|
index e847ef4c..4896cc53 100644
|
||||||
|
--- a/src/util/makekeys.c
|
||||||
|
+++ b/src/util/makekeys.c
|
||||||
|
@@ -78,6 +78,18 @@ parse_line(const char *buf, char *key, KeySym *val, char *prefix)
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
+ /* See if we can parse one of the _EVDEVK symbols */
|
||||||
|
+ i = sscanf(buf, "#define %127s _EVDEVK(0x%lx)", key, val);
|
||||||
|
+ if (i == 2 && (tmp = strstr(key, "XK_"))) {
|
||||||
|
+ memcpy(prefix, key, (size_t)(tmp - key));
|
||||||
|
+ prefix[tmp - key] = '\0';
|
||||||
|
+ tmp += 3;
|
||||||
|
+ memmove(key, tmp, strlen(tmp) + 1);
|
||||||
|
+
|
||||||
|
+ *val += 0x10081000;
|
||||||
|
+ return 1;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
/* Now try to catch alias (XK_foo XK_bar) definitions, and resolve them
|
||||||
|
* immediately: if the target is in the form XF86XK_foo, we need to
|
||||||
|
* canonicalise this to XF86foo before we do the lookup. */
|
||||||
|
--
|
||||||
|
2.31.1
|
||||||
|
|
@ -5,7 +5,7 @@
|
|||||||
Summary: Core X11 protocol client library
|
Summary: Core X11 protocol client library
|
||||||
Name: libX11
|
Name: libX11
|
||||||
Version: 1.7.2
|
Version: 1.7.2
|
||||||
Release: 2%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist}
|
Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist}
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: http://www.x.org
|
URL: http://www.x.org
|
||||||
|
|
||||||
@ -18,6 +18,7 @@ Source0: https://xorg.freedesktop.org/archive/individual/lib/%{name}-%{version}.
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Patch2: dont-forward-keycode-0.patch
|
Patch2: dont-forward-keycode-0.patch
|
||||||
|
Patch3: 0001-makekeys-handle-the-new-_EVDEVK-xorgproto-symbols.patch
|
||||||
|
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
BuildRequires: xorg-x11-util-macros >= 1.11
|
BuildRequires: xorg-x11-util-macros >= 1.11
|
||||||
@ -121,6 +122,9 @@ make %{?_smp_mflags} check
|
|||||||
%{_mandir}/man5/*.5*
|
%{_mandir}/man5/*.5*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jul 27 2021 Peter Hutterer <peter.hutterer@redhat.com> - 1.7.2-3
|
||||||
|
- Parse the new _EVDEVK symbols
|
||||||
|
|
||||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.2-2
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.2-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user