summaryrefslogtreecommitdiff
path: root/x11/xtrans
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2014-03-31 10:51:05 +0000
committerwiz <wiz@pkgsrc.org>2014-03-31 10:51:05 +0000
commitba06f55d037db0035da2dbb23208299ecc7cd13d (patch)
tree70b798991be1d6b5ffc350a9606ca67c2aba9775 /x11/xtrans
parent4ab90a9a81d5f4ec2c817feb76ac8275e1aa7f14 (diff)
downloadpkgsrc-ba06f55d037db0035da2dbb23208299ecc7cd13d.tar.gz
Update to 1.3.4:
I'm happy to announce xtrans-1.3.4 Hans de Goede (2): configure: Also add -D_DEFAULT_SOURCE to .pc cflags to shut up glibc warnings xtrans 1.3.4 Mark Kettenis (1): Increase UNIX socket buffer size Thomas Klausner (2): Cast ctype(3) function arguments to unsigned char. Add missing headers for free() and strlen().
Diffstat (limited to 'x11/xtrans')
-rw-r--r--x11/xtrans/Makefile4
-rw-r--r--x11/xtrans/distinfo9
-rw-r--r--x11/xtrans/patches/patch-ab15
3 files changed, 6 insertions, 22 deletions
diff --git a/x11/xtrans/Makefile b/x11/xtrans/Makefile
index 5cc15ac5237..15e86d45227 100644
--- a/x11/xtrans/Makefile
+++ b/x11/xtrans/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.23 2014/02/03 16:40:58 wiz Exp $
+# $NetBSD: Makefile,v 1.24 2014/03/31 10:51:05 wiz Exp $
-DISTNAME= xtrans-1.3.3
+DISTNAME= xtrans-1.3.4
CATEGORIES= x11 net
MASTER_SITES= ${MASTER_SITE_XORG:=lib/}
EXTRACT_SUFX= .tar.bz2
diff --git a/x11/xtrans/distinfo b/x11/xtrans/distinfo
index 9939250c9b9..49b33ec2c36 100644
--- a/x11/xtrans/distinfo
+++ b/x11/xtrans/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.23 2014/02/03 16:40:58 wiz Exp $
+$NetBSD: distinfo,v 1.24 2014/03/31 10:51:05 wiz Exp $
-SHA1 (xtrans-1.3.3.tar.bz2) = 6c9f3db41ebabcb78a94a714e19125f9a68567ea
-RMD160 (xtrans-1.3.3.tar.bz2) = 6cc6468edf0c703da698240fdaf2b199d5bdd5c8
-Size (xtrans-1.3.3.tar.bz2) = 177244 bytes
-SHA1 (patch-ab) = dd2cf693831270fc15ff89eb81cdf43d3916d721
+SHA1 (xtrans-1.3.4.tar.bz2) = beb2cecc4ceb8fab0557a8c37e2d41e63cbaa5ed
+RMD160 (xtrans-1.3.4.tar.bz2) = 9045cb7d77f96586a9c52a35fb162b1ab9cba541
+Size (xtrans-1.3.4.tar.bz2) = 182341 bytes
diff --git a/x11/xtrans/patches/patch-ab b/x11/xtrans/patches/patch-ab
deleted file mode 100644
index 4616cfbe021..00000000000
--- a/x11/xtrans/patches/patch-ab
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ab,v 1.3 2013/11/08 13:10:16 wiz Exp $
-
---- Xtrans.c.orig 2013-11-03 02:10:11.000000000 +0000
-+++ Xtrans.c
-@@ -162,8 +162,8 @@ TRANS(SelectTransport) (const char *prot
- protobuf[PROTOBUFSIZE-1] = '\0';
-
- for (i = 0; i < PROTOBUFSIZE && protobuf[i] != '\0'; i++)
-- if (isupper (protobuf[i]))
-- protobuf[i] = tolower (protobuf[i]);
-+ if (isupper ((unsigned char)protobuf[i]))
-+ protobuf[i] = tolower ((unsigned char)protobuf[i]);
-
- /* Look at all of the configured protocols */
-