diff options
author | minskim <minskim@pkgsrc.org> | 2005-02-14 22:46:50 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2005-02-14 22:46:50 +0000 |
commit | ba9d197da382bc9e5aa410201a898384644c997b (patch) | |
tree | de3aab9df25c82d7ebe9c4f635ba9ffdd55aee89 /x11/xterm | |
parent | 64be3f4bebfbd121ef84331687beb1f790b6d42b (diff) | |
download | pkgsrc-ba9d197da382bc9e5aa410201a898384644c997b.tar.gz |
Update xterm to 200.
Changes:
* increase color pairs value for xterm-256color and xterm-88color
to match ncurses, which has an experimental option to support this.
* modify ifdef's to make AIX use termios rather than termio; the
struct sizes for the two were not the same.
* improve CF_WITH_IMAKE_CFLAGS configure macro script for
OSMAJORVERSION and OSMINORVERSION values, e.g., for Tru64 and AIX.
* modify ifdef to define USE_POSIX_TERMIOS for Darwin (patch by
Min Sik Kim).
* modify find_utmp() to initialize the whole utmpx struct (except
ut_id), since that is needed for OSF1 4.0D to prevent an infinite loop
on exit.
* add configure check before adding -D_POSIX_SOURCE since some
platforms predefine it, e.g., cygwin.
* add simplified sed expressions in CF_IMAKE_CFLAGS configure
script macro to ensure value for PROJECTROOT is quoted on Solaris,
i.e., when nested \( and \) are not interpreted correctly.
* correct DEC rectangle operations to reset state after completing
the operations.
* modify CASE_ST handling in charproc.c to ensure that the parse
state is reset even if xterm is not currently processing an OSC or
other string (patch by Johnny Billquist forwarded by Matthias Scheler,
NetBSD xsrc/29003).
* fix OS/2 build for innotek_libc (patch by David Yeo).
* fix a regression from patch #197 fix for Debian #277832 which
disowned the selection if it was scrolled, e.g., by the user pressing
return at the bottom of the screen (Debian #291787).
* move the warning/exit for missing $DISPLAY into the error
handler in case -display is given, and the connect fails for some
other reason.
Diffstat (limited to 'x11/xterm')
-rw-r--r-- | x11/xterm/Makefile | 4 | ||||
-rw-r--r-- | x11/xterm/distinfo | 7 | ||||
-rw-r--r-- | x11/xterm/patches/patch-aa | 13 |
3 files changed, 5 insertions, 19 deletions
diff --git a/x11/xterm/Makefile b/x11/xterm/Makefile index 70d72995cdf..c59e81bf8da 100644 --- a/x11/xterm/Makefile +++ b/x11/xterm/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2005/02/05 06:00:48 minskim Exp $ +# $NetBSD: Makefile,v 1.15 2005/02/14 22:46:50 minskim Exp $ -DISTNAME= xterm-199 +DISTNAME= xterm-200 CATEGORIES= x11 MASTER_SITES= ftp://invisible-island.net/xterm/ EXTRACT_SUFX= .tgz diff --git a/x11/xterm/distinfo b/x11/xterm/distinfo index 6f54e4898b0..87a0fcacf8d 100644 --- a/x11/xterm/distinfo +++ b/x11/xterm/distinfo @@ -1,5 +1,4 @@ -$NetBSD: distinfo,v 1.11 2005/02/05 06:22:51 minskim Exp $ +$NetBSD: distinfo,v 1.12 2005/02/14 22:46:50 minskim Exp $ -SHA1 (xterm-199.tgz) = 2616505a1cb4669e61c5a48235e73b675726de23 -Size (xterm-199.tgz) = 695302 bytes -SHA1 (patch-aa) = ebbabc6c96c11c928d7defa722d40fbc7e6afc52 +SHA1 (xterm-200.tgz) = e30103d92a269c3dd25a2ebbbfb2c6d395ab84ce +Size (xterm-200.tgz) = 697480 bytes diff --git a/x11/xterm/patches/patch-aa b/x11/xterm/patches/patch-aa deleted file mode 100644 index 8348c8eff3c..00000000000 --- a/x11/xterm/patches/patch-aa +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-aa,v 1.4 2005/02/05 06:22:51 minskim Exp $ - ---- xterm_io.h.orig Tue Nov 30 19:27:47 2004 -+++ xterm_io.h -@@ -58,7 +58,7 @@ - #define USE_SYSV_TERMIO - #endif - --#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__INTERIX) -+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__INTERIX) || defined(__APPLE__) - #ifndef USE_POSIX_TERMIOS - #define USE_POSIX_TERMIOS - #endif |