summaryrefslogtreecommitdiff
path: root/x11/XFree86-4/files/patch-k
diff options
context:
space:
mode:
authorJean-Marc Zucconi <jmz@FreeBSD.org>2000-12-20 01:16:08 +0000
committerJean-Marc Zucconi <jmz@FreeBSD.org>2000-12-20 01:16:08 +0000
commitd29de0709a16956087718e6a1d07ec4239fa52a4 (patch)
tree63cdd1126a2c9106e6c0cb7c430f7f3a61ec36fe /x11/XFree86-4/files/patch-k
parentAn add-on to edit an id3 tag for mpg123-mode (mpg123.el) on Emacsen (diff)
Upgrade to 4.0.2
Notes
Notes: svn path=/head/; revision=36143
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