From owner-svn-ports-head@freebsd.org Fri Jan 15 20:12:57 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 169C9A832B7; Fri, 15 Jan 2016 20:12:57 +0000 (UTC) (envelope-from naddy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DBCF1134C; Fri, 15 Jan 2016 20:12:56 +0000 (UTC) (envelope-from naddy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0FKCtB3060861; Fri, 15 Jan 2016 20:12:55 GMT (envelope-from naddy@FreeBSD.org) Received: (from naddy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0FKCtZB060859; Fri, 15 Jan 2016 20:12:55 GMT (envelope-from naddy@FreeBSD.org) Message-Id: <201601152012.u0FKCtZB060859@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: naddy set sender to naddy@FreeBSD.org using -f From: Christian Weisgerber Date: Fri, 15 Jan 2016 20:12:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r406190 - in head/x11/luit: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jan 2016 20:12:57 -0000 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;