From 42409a5cc48238ea361473d15949d58372315d55 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Tue, 16 Dec 2025 16:46:06 +0100 Subject: [PATCH] xfree86: input: mouse: use version information from server Signed-off-by: Enrico Weigelt, metux IT consult --- hw/xfree86/drivers/input/mouse/src/mouse.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hw/xfree86/drivers/input/mouse/src/mouse.c b/hw/xfree86/drivers/input/mouse/src/mouse.c index 233da89ce..39b974e91 100644 --- a/hw/xfree86/drivers/input/mouse/src/mouse.c +++ b/hw/xfree86/drivers/input/mouse/src/mouse.c @@ -70,6 +70,8 @@ #include #endif +#include "xorgVersion.h" + #include "compiler.h" #include "xisb.h" @@ -3731,7 +3733,9 @@ static XF86ModuleVersionInfo xf86MouseVersionRec = MODINFOSTRING1, MODINFOSTRING2, XORG_VERSION_CURRENT, - PACKAGE_VERSION_MAJOR, PACKAGE_VERSION_MINOR, PACKAGE_VERSION_PATCHLEVEL, + XORG_VERSION_MAJOR, + XORG_VERSION_MINOR, + XORG_VERSION_PATCH, ABI_CLASS_XINPUT, ABI_XINPUT_VERSION, MOD_CLASS_XINPUT,