diff options
Diffstat (limited to 'xserver/test')
-rw-r--r-- | xserver/test/Makefile.in | 2 | ||||
-rw-r--r-- | xserver/test/input.c | 2 | ||||
-rw-r--r-- | xserver/test/xi2/Makefile.in | 2 | ||||
-rw-r--r-- | xserver/test/xi2/protocol-common.c | 1 |
4 files changed, 7 insertions, 0 deletions
diff --git a/xserver/test/Makefile.in b/xserver/test/Makefile.in index b3e9fffe8..623ef1ab4 100644 --- a/xserver/test/Makefile.in +++ b/xserver/test/Makefile.in @@ -234,6 +234,8 @@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DEVEL_DOCS_FALSE = @ENABLE_DEVEL_DOCS_FALSE@ ENABLE_DEVEL_DOCS_TRUE = @ENABLE_DEVEL_DOCS_TRUE@ +ENABLE_DOCS_FALSE = @ENABLE_DOCS_FALSE@ +ENABLE_DOCS_TRUE = @ENABLE_DOCS_TRUE@ EXEEXT = @EXEEXT@ F77 = @F77@ FBDEVHW_FALSE = @FBDEVHW_FALSE@ diff --git a/xserver/test/input.c b/xserver/test/input.c index b90d3b4fd..f08e13b9e 100644 --- a/xserver/test/input.c +++ b/xserver/test/input.c @@ -182,6 +182,8 @@ static void dix_event_to_core(int type) ev.time = time; ev.root_y = x; ev.root_x = y; + SetBit(ev.valuators.mask, 0); + SetBit(ev.valuators.mask, 1); ev.root = ROOT_WINDOW_ID; ev.corestate = state; ev.detail.key = detail; diff --git a/xserver/test/xi2/Makefile.in b/xserver/test/xi2/Makefile.in index 847d1e228..1c6ff93fb 100644 --- a/xserver/test/xi2/Makefile.in +++ b/xserver/test/xi2/Makefile.in @@ -293,6 +293,8 @@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_DEVEL_DOCS_FALSE = @ENABLE_DEVEL_DOCS_FALSE@ ENABLE_DEVEL_DOCS_TRUE = @ENABLE_DEVEL_DOCS_TRUE@ +ENABLE_DOCS_FALSE = @ENABLE_DOCS_FALSE@ +ENABLE_DOCS_TRUE = @ENABLE_DOCS_TRUE@ EXEEXT = @EXEEXT@ F77 = @F77@ FBDEVHW_FALSE = @FBDEVHW_FALSE@ diff --git a/xserver/test/xi2/protocol-common.c b/xserver/test/xi2/protocol-common.c index 50f2b8698..10d82a501 100644 --- a/xserver/test/xi2/protocol-common.c +++ b/xserver/test/xi2/protocol-common.c @@ -28,6 +28,7 @@ #include <stdint.h> #include "extinit.h" /* for XInputExtensionInit */ #include "exglobals.h" +#include "xkbsrv.h" /* for XkbInitPrivates */ #include <glib.h> #include "protocol-common.h" |