35 lines
1007 B
Diff
35 lines
1007 B
Diff
|
From 920d9c4d6562ecabf79497bc901d50522d4bc661 Mon Sep 17 00:00:00 2001
|
||
|
From: Linus Heckemann <git@sphalerite.org>
|
||
|
Date: Sat, 1 Feb 2020 11:08:26 +0100
|
||
|
Subject: [PATCH] xserver: add no-op input thread init function
|
||
|
|
||
|
This allows Xvnc to build with xorg-server 1.20.7, which requires OS
|
||
|
layers to implement a ddxInputThreadInit function when configured with
|
||
|
--enable-input-thread (the default).
|
||
|
|
||
|
relevant xorg-server commit: e3f26605d85d987da434640f52646d728f1fe919
|
||
|
---
|
||
|
unix/xserver/hw/vnc/Input.c | 9 +++++++++
|
||
|
1 file changed, 9 insertions(+)
|
||
|
|
||
|
diff --git a/unix/xserver/hw/vnc/Input.c b/unix/xserver/hw/vnc/Input.c
|
||
|
index 534e435e..b342d4d6 100644
|
||
|
--- a/unix/xserver/hw/vnc/Input.c
|
||
|
+++ b/unix/xserver/hw/vnc/Input.c
|
||
|
@@ -711,3 +711,12 @@ static void vncKeysymKeyboardEvent(KeySym keysym, int down)
|
||
|
*/
|
||
|
mieqProcessInputEvents();
|
||
|
}
|
||
|
+
|
||
|
+#if INPUTTHREAD
|
||
|
+/** This function is called in Xserver/os/inputthread.c when starting
|
||
|
+ the input thread. */
|
||
|
+void
|
||
|
+ddxInputThreadInit(void)
|
||
|
+{
|
||
|
+}
|
||
|
+#endif
|
||
|
--
|
||
|
2.24.1
|
||
|
|