diff options
author | Florent Thoumie <flz@FreeBSD.org> | 2009-01-23 16:28:36 +0000 |
---|---|---|
committer | Florent Thoumie <flz@FreeBSD.org> | 2009-01-23 16:28:36 +0000 |
commit | 340b57f8beb786be8990652b17d2e45f182346e6 (patch) | |
tree | c3e6d8718763fb6c4df9ddb40d2544e7ceccaccd /x11-drivers/xf86-input-mouse/files/patch-dont-flush-buttons-6a03e8bd | |
parent | Bugs fixed (from release notes): (diff) |
- Update X.org ports to 7.4+ (few ports are more recent than the katamari).
- Bump PORTREVISION for all ports depending on libglut since the shlib
version number went from 4 to 3.
- Bump PORTREVISION for all ports depending on libXaw as libXaw.so.8 isn't
installed anymore.
- Couple of ports fixes (mostly missing xorg components added to USE_XORG).
Notes
Notes:
svn path=/head/; revision=226727
Diffstat (limited to 'x11-drivers/xf86-input-mouse/files/patch-dont-flush-buttons-6a03e8bd')
-rw-r--r-- | x11-drivers/xf86-input-mouse/files/patch-dont-flush-buttons-6a03e8bd | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/x11-drivers/xf86-input-mouse/files/patch-dont-flush-buttons-6a03e8bd b/x11-drivers/xf86-input-mouse/files/patch-dont-flush-buttons-6a03e8bd deleted file mode 100644 index d1a21ed5f306..000000000000 --- a/x11-drivers/xf86-input-mouse/files/patch-dont-flush-buttons-6a03e8bd +++ /dev/null @@ -1,38 +0,0 @@ -From 6a03e8bd9699a33dabcdd2bbcf51a001ddfd5534 Mon Sep 17 00:00:00 2001 -From: Peter Hutterer <peter@cs.unisa.edu.au> -Date: Fri, 16 Nov 2007 06:15:45 +0000 -Subject: Bug #13144: Don't flush buttons, release events can cause paste events. - ---- -diff --git src/mouse.c src/mouse.c -index ff52d2b..bd98a80 100644 ---- src/mouse.c -+++ src/mouse.c -@@ -1853,26 +1853,17 @@ MouseConvert(InputInfoPtr pInfo, int first, int num, int v0, int v1, int v2, - - /********************************************************************** - * -- * FlushButtons -- send button up events for sanity. -+ * FlushButtons -- reset button states. - * - **********************************************************************/ - - static void - FlushButtons(MouseDevPtr pMse) - { -- -- /* If no button down is pending xf86PostButtonEvent() -- * will discard them. So we are on the safe side. */ -- - int i, blocked; - - pMse->lastButtons = 0; - pMse->lastMappedButtons = 0; -- -- blocked = xf86BlockSIGIO (); -- for (i = 1; i <= 5; i++) -- xf86PostButtonEvent(pMse->device,0,i,0,0,0); -- xf86UnblockSIGIO (blocked); - } - - /********************************************************************** |