Date: Fri, 15 Jan 2016 20:12:55 +0000 (UTC) From: Christian Weisgerber <naddy@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r406190 - in head/x11/luit: . files Message-ID: <201601152012.u0FKCtZB060859@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: naddy Date: Fri Jan 15 20:12:55 2016 New Revision: 406190 URL: https://svnweb.freebsd.org/changeset/ports/406190 Log: On BSD, switching off ICANON does not disable LNEXT (^V) processing. We explicitly need to unset IEXTEN. Added: head/x11/luit/files/ head/x11/luit/files/patch-sys.c (contents, props changed) Modified: head/x11/luit/Makefile Modified: head/x11/luit/Makefile ============================================================================== --- head/x11/luit/Makefile Fri Jan 15 19:44:31 2016 (r406189) +++ head/x11/luit/Makefile Fri Jan 15 20:12:55 2016 (r406190) @@ -2,6 +2,7 @@ PORTNAME= luit PORTVERSION= 1.1.1 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org Added: head/x11/luit/files/patch-sys.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/luit/files/patch-sys.c Fri Jan 15 20:12:55 2016 (r406190) @@ -0,0 +1,11 @@ +--- sys.c.orig 2012-03-23 04:23:07 UTC ++++ sys.c +@@ -256,7 +256,7 @@ setRawTermios(void) + rc = tcgetattr(0, &tio); + if (rc < 0) + return rc; +- tio.c_lflag &= (unsigned) ~(ECHO | ICANON | ISIG); ++ tio.c_lflag &= (unsigned) ~(ECHO | ICANON | IEXTEN | ISIG); + tio.c_iflag &= (unsigned) ~(ICRNL | IXOFF | IXON | ISTRIP); + #ifdef ONLCR + tio.c_oflag &= (unsigned) ~ONLCR;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601152012.u0FKCtZB060859>