Sun Jun 16 02:05:20 2013 UTC ()
Update xf86-input-mouse to 1.9.0.

while here, revive minimal pert of patches lost during update to 1.8.1,
for WSMouse support of NetBSD.

[ANNOUNCE] xf86-input-mouse 1.9.0
No big changes, but since we removed maintainer mode we might as well bump
the minor version.

Adam Jackson (1):
      configure: Drop AM_MAINTAINER_MODE

Colin Walters (1):
      autogen.sh: Implement GNOME Build API

Peter Hutterer (3):
      Fix compilation error with EXTMOUSEDEBUG on
      Use signal-safe logging if available
      mouse 1.9.0


(obache)
diff -r0 -r1.1 pkgsrc/x11/xf86-input-mouse/patches/patch-src_bsd__mouse.c

File Added: pkgsrc/x11/xf86-input-mouse/patches/Attic/patch-src_bsd__mouse.c
$NetBSD: patch-src_bsd__mouse.c,v 1.1 2013/06/16 02:05:20 obache Exp $

* enable MSE_MISC on netbsd as well, otherwise we can't find WSMouse.

--- src/bsd_mouse.c.orig	2012-10-08 01:40:07.000000000 +0000
+++ src/bsd_mouse.c
@@ -98,7 +98,7 @@ static int
 SupportedInterfaces(void)
 {
 #if defined(__NetBSD__)
-    return MSE_SERIAL | MSE_BUS | MSE_PS2 | MSE_AUTO;
+    return MSE_SERIAL | MSE_BUS | MSE_PS2 | MSE_AUTO | MSE_MISC;
 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
     return MSE_SERIAL | MSE_BUS | MSE_PS2 | MSE_AUTO | MSE_MISC;
 #else