From 12c89890812ad7a3c4b7138fa7e17a4a8c101b50 Mon Sep 17 00:00:00 2001 From: Gary Palmer Date: Mon, 1 Mar 1999 04:47:37 +0000 Subject: [PATCH] USB is only on PC's at the minute, don't try and use the MOUSE_IF_USB define on the AXP, 'cos it breaks. --- usr.sbin/moused/moused.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/usr.sbin/moused/moused.c b/usr.sbin/moused/moused.c index bf6f25882614..ecb90530333e 100644 --- a/usr.sbin/moused/moused.c +++ b/usr.sbin/moused/moused.c @@ -46,7 +46,7 @@ #ifndef lint static const char rcsid[] = - "$Id: moused.c,v 1.24 1998/12/13 23:26:21 steve Exp $"; + "$Id: moused.c,v 1.25 1999/02/28 09:18:57 yokota Exp $"; #endif /* not lint */ #include @@ -168,7 +168,9 @@ static symtab_t rifs[] = { { "inport", MOUSE_IF_INPORT }, { "ps/2", MOUSE_IF_PS2 }, { "sysmouse", MOUSE_IF_SYSMOUSE }, +#ifdef __i386__ { "usb", MOUSE_IF_USB }, +#endif /* __i386__ */ { NULL, MOUSE_IF_UNKNOWN }, };