aboutsummaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorJean-Marc Zucconi <jmz@FreeBSD.org>2000-09-25 21:16:16 +0000
committerJean-Marc Zucconi <jmz@FreeBSD.org>2000-09-25 21:16:16 +0000
commit79d3b564326906bb63987eda446aaa03f4cf87c6 (patch)
treec91bd335d8187840ecd78c5681233be7249a962d /x11
parent64be182734c054e1ce57d4245221c87ac74d275a (diff)
downloadports-79d3b564326906bb63987eda446aaa03f4cf87c6.tar.gz
ports-79d3b564326906bb63987eda446aaa03f4cf87c6.zip
Notes
Diffstat (limited to 'x11')
-rw-r--r--x11/XFree86-4/files/patch-k32
1 files changed, 32 insertions, 0 deletions
diff --git a/x11/XFree86-4/files/patch-k b/x11/XFree86-4/files/patch-k
new file mode 100644
index 000000000000..e5308d958553
--- /dev/null
+++ b/x11/XFree86-4/files/patch-k
@@ -0,0 +1,32 @@
+--- programs/Xserver/hw/xfree86/input/mouse/mouse.c.orig Sun Jul 23 17:50:10 2000
++++ programs/Xserver/hw/xfree86/input/mouse/mouse.c Sun Jul 23 17:54:22 2000
+@@ -692,10 +692,15 @@
+ pMse->protocolID = protocolID;
+ }
+ }
++#ifndef __FreeBSD__
+ memcpy(pMse->protoPara, proto[pMse->protocolID], sizeof(pMse->protoPara));
++#endif
+ if (automatic) {
+
+ if (name) {
++#ifdef __FreeBSD__
++ memcpy(pMse->protoPara, proto[pMse->protocolID], sizeof(pMse->protoPara));
++#endif
+ /* Possible protoPara overrides from SetupAuto. */
+ for (i = 0; i < sizeof(pMse->protoPara); i++)
+ if (protoPara[i] != -1)
+--- programs/Xserver/hw/xfree86/os-support/bsd/bsd_mouse.c.orig Sat Feb 12 22:45:41 2000
++++ programs/Xserver/hw/xfree86/os-support/bsd/bsd_mouse.c Sun Jul 23 17:50:10 2000
+@@ -165,7 +165,11 @@
+ mode.rate = rate > 0 ? rate : -1;
+ mode.resolution = res > 0 ? res : -1;
+ mode.accelfactor = -1;
++#ifdef __FreeBSD__
++ mode.level = 1;
++#else
+ mode.level = -1;
++#endif
+ ioctl(pInfo->fd, MOUSE_SETMODE, &mode);
+ }
+ #endif