From d694b44259ff51cfca2c3ec9a58bf164010cc1ad Mon Sep 17 00:00:00 2001 From: Phil Blundell Date: Sat, 8 Nov 2003 18:51:59 +0000 Subject: [PATCH] Avoid ugly shell error when libXdmcp isn't present. New functions. (TsInit): Register them. --- hw/kdrive/linux/ts.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/hw/kdrive/linux/ts.c b/hw/kdrive/linux/ts.c index c24570f91..9051c0d61 100644 --- a/hw/kdrive/linux/ts.c +++ b/hw/kdrive/linux/ts.c @@ -131,6 +131,20 @@ char *TsNames[] = { int TsInputType; +static int +TsEnable (int fd, void *closure) +{ + KdMouseInfo *mi = (KdMouseInfo *)closure; + + return open (mi->name, 0); +} + +static void +TsDisable (int fd, void *closure) +{ + close (fd); +} + static int TsInit (void) { @@ -172,7 +186,12 @@ TsInit (void) mi->driver = (void *) fd; mi->inputType = TsInputType; if (KdRegisterFd (TsInputType, fd, TsRead, (void *) mi)) + { + /* Set callbacks for vt switches etc */ + KdRegisterFdEnableDisable (fd, TsEnable, TsDisable); + n++; + } } else close (fd);