head 1.4; access; symbols pkgsrc-2014Q1:1.3.0.4 pkgsrc-2014Q1-base:1.3 pkgsrc-2013Q4:1.3.0.2 pkgsrc-2013Q4-base:1.3 pkgsrc-2013Q3:1.1.0.58 pkgsrc-2013Q3-base:1.1 pkgsrc-2013Q2:1.1.0.56 pkgsrc-2013Q2-base:1.1 pkgsrc-2013Q1:1.1.0.54 pkgsrc-2013Q1-base:1.1 pkgsrc-2012Q4:1.1.0.52 pkgsrc-2012Q4-base:1.1 pkgsrc-2012Q3:1.1.0.50 pkgsrc-2012Q3-base:1.1 pkgsrc-2012Q2:1.1.0.48 pkgsrc-2012Q2-base:1.1 pkgsrc-2012Q1:1.1.0.46 pkgsrc-2012Q1-base:1.1 pkgsrc-2011Q4:1.1.0.44 pkgsrc-2011Q4-base:1.1 pkgsrc-2011Q3:1.1.0.42 pkgsrc-2011Q3-base:1.1 pkgsrc-2011Q2:1.1.0.40 pkgsrc-2011Q2-base:1.1 pkgsrc-2011Q1:1.1.0.38 pkgsrc-2011Q1-base:1.1 pkgsrc-2010Q4:1.1.0.36 pkgsrc-2010Q4-base:1.1 pkgsrc-2010Q3:1.1.0.34 pkgsrc-2010Q3-base:1.1 pkgsrc-2010Q2:1.1.0.32 pkgsrc-2010Q2-base:1.1 pkgsrc-2010Q1:1.1.0.30 pkgsrc-2010Q1-base:1.1 pkgsrc-2009Q4:1.1.0.28 pkgsrc-2009Q4-base:1.1 pkgsrc-2009Q3:1.1.0.26 pkgsrc-2009Q3-base:1.1 pkgsrc-2009Q2:1.1.0.24 pkgsrc-2009Q2-base:1.1 pkgsrc-2009Q1:1.1.0.22 pkgsrc-2009Q1-base:1.1 pkgsrc-2008Q4:1.1.0.20 pkgsrc-2008Q4-base:1.1 pkgsrc-2008Q3:1.1.0.18 pkgsrc-2008Q3-base:1.1 cube-native-xorg:1.1.0.16 cube-native-xorg-base:1.1 pkgsrc-2008Q2:1.1.0.14 pkgsrc-2008Q2-base:1.1 cwrapper:1.1.0.12 pkgsrc-2008Q1:1.1.0.10 pkgsrc-2008Q1-base:1.1 pkgsrc-2007Q4:1.1.0.8 pkgsrc-2007Q4-base:1.1 pkgsrc-2007Q3:1.1.0.6 pkgsrc-2007Q3-base:1.1 pkgsrc-2007Q2:1.1.0.4 pkgsrc-2007Q2-base:1.1 pkgsrc-2007Q1:1.1.0.2 pkgsrc-2007Q1-base:1.1; locks; strict; comment @# @; 1.4 date 2014.03.31.10.51.05; author wiz; state dead; branches; next 1.3; commitid sPlQjlKvDNO1aQux; 1.3 date 2013.11.08.13.10.16; author wiz; state Exp; branches; next 1.2; commitid HG0LDAEYtc5Pwtcx; 1.2 date 2013.11.07.22.50.50; author wiz; state Exp; branches; next 1.1; commitid TowKOmOgGQdPLocx; 1.1 date 2007.01.14.10.30.56; author joerg; state Exp; branches; next ; desc @@ 1.4 log @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(). @ text @$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 */ @ 1.3 log @Update to 1.3.2: Another round of fixes for the fd sending API's: improves portability, fixes build failures on BSD & Solaris when building with the new API disabled, and enables the new API for Solaris. @ text @d1 1 a1 1 $NetBSD: patch-ab,v 1.2 2013/11/07 22:50:50 wiz Exp $ @ 1.2 log @Upgrade to 1.3.1 with upstream patches (will be in 1.3.2). Same changes as in the previous try except that the patches fix the breakage :) @ text @d1 1 a1 1 $NetBSD: patch-ab,v 1.1 2007/01/14 10:30:56 joerg Exp $ a15 16 @@@@ -879,6 +879,7 @@@@ TRANS(Writev) (XtransConnInfo ciptr, str return ciptr->transptr->Writev (ciptr, buf, size); } +#if XTRANS_SEND_FDS int TRANS(SendFd) (XtransConnInfo ciptr, int fd, int do_close) { @@@@ -890,6 +891,7 @@@@ TRANS(RecvFd) (XtransConnInfo ciptr) { return ciptr->transptr->RecvFd(ciptr); } +#endif int TRANS(Disconnect) (XtransConnInfo ciptr) @ 1.1 log @Update to xtrans-1.0.3 (irrelevant Makefile change) and fix ctype usage. @ text @d1 1 a1 1 $NetBSD$ d3 1 a3 1 --- Xtrans.c.orig 2007-01-14 11:28:47.000000000 +0100 d5 1 a5 1 @@@@ -180,8 +180,8 @@@@ TRANS(SelectTransport) (char *protocol) d16 16 @