diff options
author | Beech Rintoul <beech@FreeBSD.org> | 2008-07-05 01:35:15 +0000 |
---|---|---|
committer | Beech Rintoul <beech@FreeBSD.org> | 2008-07-05 01:35:15 +0000 |
commit | 7398ff7e5d55be456e46627ec0eb74abd427f86a (patch) | |
tree | cefc80a62da8f4f64f75da2b275b96653a183931 /misc/tmux | |
parent | 2851d3204402f3f1a369e254d64ff7c3ce13cd61 (diff) | |
download | ports-7398ff7e5d55be456e46627ec0eb74abd427f86a.tar.gz ports-7398ff7e5d55be456e46627ec0eb74abd427f86a.zip |
Notes
Diffstat (limited to 'misc/tmux')
-rw-r--r-- | misc/tmux/Makefile | 2 | ||||
-rw-r--r-- | misc/tmux/distinfo | 6 | ||||
-rw-r--r-- | misc/tmux/files/patch-tty.c | 14 |
3 files changed, 18 insertions, 4 deletions
diff --git a/misc/tmux/Makefile b/misc/tmux/Makefile index 9ec00e46078d..b65df225c173 100644 --- a/misc/tmux/Makefile +++ b/misc/tmux/Makefile @@ -6,7 +6,7 @@ # PORTNAME= tmux -PORTVERSION= 0.3 +DISTVERSION= 0.4a CATEGORIES= misc MASTER_SITES= SF diff --git a/misc/tmux/distinfo b/misc/tmux/distinfo index 418bf3d432b7..ec5a414f0e8c 100644 --- a/misc/tmux/distinfo +++ b/misc/tmux/distinfo @@ -1,3 +1,3 @@ -MD5 (tmux-0.3.tar.gz) = a3ea00b76629180fbb50e77dda8e3bea -SHA256 (tmux-0.3.tar.gz) = a8e81e869e733a8fe7cb53ecdf232c794df08c9b19b4b3055f415ba5e354ac25 -SIZE (tmux-0.3.tar.gz) = 87339 +MD5 (tmux-0.4a.tar.gz) = 4afd9540f6b89df9a443cffb8345bf5a +SHA256 (tmux-0.4a.tar.gz) = 2aebe1161a7ac6563e5b2dda502da49d52c9e4059ba5cea1b21c6fc703d8bc78 +SIZE (tmux-0.4a.tar.gz) = 100685 diff --git a/misc/tmux/files/patch-tty.c b/misc/tmux/files/patch-tty.c new file mode 100644 index 000000000000..d153dd8f73a2 --- /dev/null +++ b/misc/tmux/files/patch-tty.c @@ -0,0 +1,14 @@ +--- tty.c.orig 2008-07-03 07:48:22.000000000 +0800 ++++ tty.c 2008-07-03 07:48:46.000000000 +0800 +@@ -85,9 +85,9 @@ + if (tcgetattr(tty->fd, &tty->tio) != 0) + fatal("tcgetattr failed"); + memcpy(&tio, &tty->tio, sizeof tio); +- tio.c_iflag &= ~(IXON|IXOFF|ICRNL|INLCR|IGNCR|IMAXBEL|IUCLC|ISTRIP); ++ tio.c_iflag &= ~(IXON|IXOFF|ICRNL|INLCR|IGNCR|IMAXBEL|ISTRIP); + tio.c_iflag |= IGNBRK; +- tio.c_oflag &= ~(OPOST|ONLCR|OCRNL|ONLRET|OLCUC); ++ tio.c_oflag &= ~(OPOST|ONLCR|OCRNL|ONLRET); + tio.c_lflag &= ~(IEXTEN|ICANON|ECHO|ECHOE|ECHONL|ECHOCTL|ECHOPRT|ECHOKE|ECHOCTL|ISIG); + tio.c_cc[VMIN] = 1; + tio.c_cc[VTIME] = 0; |