diff options
author | bsam <bsam@FreeBSD.org> | 2012-11-07 16:36:25 +0800 |
---|---|---|
committer | bsam <bsam@FreeBSD.org> | 2012-11-07 16:36:25 +0800 |
commit | 69b34c576c8e1c4881b827a7983d671111898f88 (patch) | |
tree | 66864028702452e38b1a6add82fca38b01ac2766 /x11-drivers | |
parent | f58e5bf7455d0bde17c3b6ec9ff74a3a11f478b5 (diff) | |
download | freebsd-ports-gnome-69b34c576c8e1c4881b827a7983d671111898f88.tar.gz freebsd-ports-gnome-69b34c576c8e1c4881b827a7983d671111898f88.tar.zst freebsd-ports-gnome-69b34c576c8e1c4881b827a7983d671111898f88.zip |
. incorporate an upstream patch to fix wrong read Protocol and Device
from xorg.conf: http://cgit.freedesktop.org/xorg/driver/xf86-input-mouse/commit/?id=b65651974ee5620086b484086ea12d78c92fa369
. trim makefile headers.
PR: ports/171433
Submitted by: Martin Birgmeier <Martin.Birgmeier@aon.at>
Approved by: x11 (maintainer timeout 8+ weeks)
Feature safe: yes
Diffstat (limited to 'x11-drivers')
-rw-r--r-- | x11-drivers/xf86-input-mouse/Makefile | 7 | ||||
-rw-r--r-- | x11-drivers/xf86-input-mouse/files/patch-src_mouse.c | 11 |
2 files changed, 13 insertions, 5 deletions
diff --git a/x11-drivers/xf86-input-mouse/Makefile b/x11-drivers/xf86-input-mouse/Makefile index 8e1512a1d49e..42ee890b0afe 100644 --- a/x11-drivers/xf86-input-mouse/Makefile +++ b/x11-drivers/xf86-input-mouse/Makefile @@ -1,12 +1,9 @@ -# New ports collection makefile for: xf86-input-mouse -# Date Created: 17 Feb 2006 -# Whom: Florent Thoumie <flz@FreeBSD.org> -# +# Created by: Florent Thoumie <flz@FreeBSD.org> # $FreeBSD$ -# PORTNAME= xf86-input-mouse PORTVERSION= 1.7.1 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org diff --git a/x11-drivers/xf86-input-mouse/files/patch-src_mouse.c b/x11-drivers/xf86-input-mouse/files/patch-src_mouse.c new file mode 100644 index 000000000000..8255608025a1 --- /dev/null +++ b/x11-drivers/xf86-input-mouse/files/patch-src_mouse.c @@ -0,0 +1,11 @@ +--- src/mouse.c.orig 2012-10-18 11:06:28.000000000 +0400 ++++ src/mouse.c 2012-10-18 11:06:57.000000000 +0400 +@@ -872,6 +872,8 @@ MousePreInit(InputDriverPtr drv, IDevPtr + pInfo->private_flags = 0; + pInfo->always_core_feedback = NULL; + ++ COLLECT_INPUT_OPTIONS(pInfo, NULL); ++ + if (NewMousePreInit(drv, pInfo, flags) == Success) + { + /* Check if SendDragEvents has been disabled. */ |