summaryrefslogtreecommitdiff
path: root/x11/XFree86-4/files/patch-k
diff options
context:
space:
mode:
Diffstat (limited to 'x11/XFree86-4/files/patch-k')
-rw-r--r--x11/XFree86-4/files/patch-k41
1 files changed, 0 insertions, 41 deletions
diff --git a/x11/XFree86-4/files/patch-k b/x11/XFree86-4/files/patch-k
deleted file mode 100644
index f620317a3a66..000000000000
--- a/x11/XFree86-4/files/patch-k
+++ /dev/null
@@ -1,41 +0,0 @@
-*** programs/Xserver/hw/xfree86/input/mouse/mouse.c.orig Sat Jul 1 01:39:02 2000
---- programs/Xserver/hw/xfree86/input/mouse/mouse.c Fri Sep 22 11:30:18 2000
-***************
-*** 584,591 ****
- { 0xc0, 0x00, 0x00, 0x00, 6, 0x00, 0xff, MPF_NONE }, /* NetScroll */
- /* Bus Mouse */
- { 0xf8, 0x80, 0x00, 0x00, 5, 0x00, 0xff, MPF_NONE }, /* BusMouse */
-! /* Auto */
-! { 0xf8, 0x80, 0x00, 0x00, 5, 0x00, 0xff, MPF_NONE }, /* dummy entry */
- };
-
- /*
---- 584,591 ----
- { 0xc0, 0x00, 0x00, 0x00, 6, 0x00, 0xff, MPF_NONE }, /* NetScroll */
- /* Bus Mouse */
- { 0xf8, 0x80, 0x00, 0x00, 5, 0x00, 0xff, MPF_NONE }, /* BusMouse */
-! { 0xf8, 0x80, 0x00, 0x00, 5, 0x00, 0xff, MPF_NONE }, /* Auto */
-! { 0xf8, 0x80, 0x00, 0x00, 8, 0x00, 0xff, MPF_NONE }, /* SysMouse */
- };
-
- /*
-*** programs/Xserver/hw/xfree86/os-support/bsd/bsd_mouse.c.orig Sat Feb 12 21:45:41 2000
---- programs/Xserver/hw/xfree86/os-support/bsd/bsd_mouse.c Fri Sep 22 11:30:18 2000
-***************
-*** 165,171 ****
---- 165,179 ----
- mode.rate = rate > 0 ? rate : -1;
- mode.resolution = res > 0 ? res : -1;
- mode.accelfactor = -1;
-+ #if defined(__FreeBSD__)
-+ /*
-+ * As the FreeBSD sysmouse driver defaults to protocol level 0 everytime
-+ * it is opened we enforce protocol level 1 again at this point.
-+ */
-+ mode.level = 1;
-+ #else
- mode.level = -1;
-+ #endif
- ioctl(pInfo->fd, MOUSE_SETMODE, &mode);
- }
- #endif