diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2012-01-09 08:34:17 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2012-01-09 08:34:17 +0000 |
commit | 2ebb31b1539b2f402e1ead2771898a11ec421970 (patch) | |
tree | 990be354572723adb206e2c43d8b2b3e7a790a1c /x11 | |
parent | 242a4c76acde8c720bd01db91ba1860c7a30e20d (diff) |
Notes
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xterm/Makefile | 3 | ||||
-rw-r--r-- | x11/xterm/distinfo | 4 | ||||
-rw-r--r-- | x11/xterm/files/patch-main.c | 25 |
3 files changed, 3 insertions, 29 deletions
diff --git a/x11/xterm/Makefile b/x11/xterm/Makefile index 890b9d4ccdfe..1185d2d84fb3 100644 --- a/x11/xterm/Makefile +++ b/x11/xterm/Makefile @@ -6,8 +6,7 @@ # PORTNAME= xterm -PORTVERSION= 276 -PORTREVISION= 1 +PORTVERSION= 277 CATEGORIES= x11 MASTER_SITES= ftp://invisible-island.net/xterm/ \ CRITICAL diff --git a/x11/xterm/distinfo b/x11/xterm/distinfo index a6e69cd1cc2d..3d108d8ca779 100644 --- a/x11/xterm/distinfo +++ b/x11/xterm/distinfo @@ -1,2 +1,2 @@ -SHA256 (xterm-276.tgz) = ebb0fc38e1d6dfd7ed4e31cbb82e5d3a87a56da5c59d88980e89eef18b0073cc -SIZE (xterm-276.tgz) = 984475 +SHA256 (xterm-277.tgz) = 6cd38606e4179a874220f33dfd41063f93cd1c717aa26c742beb7adea3c1471e +SIZE (xterm-277.tgz) = 996247 diff --git a/x11/xterm/files/patch-main.c b/x11/xterm/files/patch-main.c deleted file mode 100644 index 93646726cd25..000000000000 --- a/x11/xterm/files/patch-main.c +++ /dev/null @@ -1,25 +0,0 @@ ---- ./main.c.orig 2011-10-09 16:14:51.000000000 +0200 -+++ ./main.c 2011-11-18 09:29:46.000000000 +0100 -@@ -3312,19 +3312,18 @@ - * necessary. ENXIO is what is normally returned if there is - * no controlling terminal, but some systems (e.g. SunOS 4.0) - * seem to return EIO. Solaris 2.3 is said to return EINVAL. -- * Cygwin returns ENOENT. -+ * Cygwin returns ENOENT. FreeBSD can return ENOENT, especially -+ * if xterm is run within a jail. - */ - #if USE_NO_DEV_TTY - no_dev_tty = False; - #endif - if (ttyfd < 0) { - if (tty_got_hung || errno == ENXIO || errno == EIO || -+ errno == ENOENT || - #ifdef ENODEV - errno == ENODEV || - #endif --#ifdef __CYGWIN__ -- errno == ENOENT || --#endif - errno == EINVAL || errno == ENOTTY || errno == EACCES) { - #if USE_NO_DEV_TTY - no_dev_tty = True; |