diff options
author | jbeich <jbeich@FreeBSD.org> | 2015-06-15 21:05:25 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2015-06-15 21:05:25 +0800 |
commit | 9c0b39b7fe10d14bb5fae79558fcbd38ac0cb081 (patch) | |
tree | 8f62f35542189d4757f4060e2af17c9431eb4d7e /x11-drivers/xf86-input-wacom | |
parent | f1b39331cce851d3f5668ff9c2a8d72b257972df (diff) | |
download | freebsd-ports-gnome-9c0b39b7fe10d14bb5fae79558fcbd38ac0cb081.tar.gz freebsd-ports-gnome-9c0b39b7fe10d14bb5fae79558fcbd38ac0cb081.tar.zst freebsd-ports-gnome-9c0b39b7fe10d14bb5fae79558fcbd38ac0cb081.zip |
x11-drivers/xf86-input-wacom: update to 0.30.0
Changes: http://sf.net/p/linuxwacom/xf86-input-wacom/ci/xf86-input-wacom-0.30.0/log/
Diffstat (limited to 'x11-drivers/xf86-input-wacom')
-rw-r--r-- | x11-drivers/xf86-input-wacom/Makefile | 2 | ||||
-rw-r--r-- | x11-drivers/xf86-input-wacom/distinfo | 4 | ||||
-rw-r--r-- | x11-drivers/xf86-input-wacom/files/patch-tools-isdv4-serial-inputattach.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/x11-drivers/xf86-input-wacom/Makefile b/x11-drivers/xf86-input-wacom/Makefile index 745fde27a9ba..c8c1dcc11a61 100644 --- a/x11-drivers/xf86-input-wacom/Makefile +++ b/x11-drivers/xf86-input-wacom/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= xf86-input-wacom -PORTVERSION= 0.29.0 +PORTVERSION= 0.30.0 CATEGORIES= x11-drivers MASTER_SITES= SF/linuxwacom/${PORTNAME} diff --git a/x11-drivers/xf86-input-wacom/distinfo b/x11-drivers/xf86-input-wacom/distinfo index 039201256271..78e7c084f524 100644 --- a/x11-drivers/xf86-input-wacom/distinfo +++ b/x11-drivers/xf86-input-wacom/distinfo @@ -1,2 +1,2 @@ -SHA256 (xorg/driver/xf86-input-wacom-0.29.0.tar.bz2) = 88507e76f1eb98a20c4381806e03c694adcff88ac0028f93892019a7a6fc8b96 -SIZE (xorg/driver/xf86-input-wacom-0.29.0.tar.bz2) = 589495 +SHA256 (xorg/driver/xf86-input-wacom-0.30.0.tar.bz2) = 8ad4e479a4fc6d3c18e680958a8f42c3c87f15fdf8d2561810ca01a0a78841f5 +SIZE (xorg/driver/xf86-input-wacom-0.30.0.tar.bz2) = 591648 diff --git a/x11-drivers/xf86-input-wacom/files/patch-tools-isdv4-serial-inputattach.c b/x11-drivers/xf86-input-wacom/files/patch-tools-isdv4-serial-inputattach.c index d8be073bad74..3b9d89e1865b 100644 --- a/x11-drivers/xf86-input-wacom/files/patch-tools-isdv4-serial-inputattach.c +++ b/x11-drivers/xf86-input-wacom/files/patch-tools-isdv4-serial-inputattach.c @@ -37,11 +37,11 @@ } +#endif - static int get_baud_rate(int fd) + static unsigned int get_baud_rate(int fd) { +#ifdef __linux__ struct stat st; - int baudrate = 19200; + unsigned int baudrate = 19200; int id; @@ -112,6 +122,9 @@ int get_baud_rate(int fd) udev_unref(udev); |