pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/x11/xterm Update to xterm-236. Changes:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f552e398583e
branches:  trunk
changeset: 545399:f552e398583e
user:      bjs <bjs%pkgsrc.org@localhost>
date:      Fri Aug 01 23:14:47 2008 +0000

description:
Update to xterm-236.  Changes:

                            Patch #236 - 2008/07/27

     * correct memory reallocation when handling a paste of UTF-8 text from
       patch #225 changes (report/patch by Max Mikhanosha).
     * correct allocation of temporary buffer in xtermFindShell in case the
       user's $PATH contains no ":" (report/analysis by Victor Stinner,
       Freedesktop.Org Bugzilla #16790).
     * modify CF_XOPEN_SOURCE to add case for DragonFly BSD, to fix new
       compile problem exposed by fix for fd_mask (patch by Hasso Tepper).
     * add configure-check for ncurses use_extended_names, (report by
       Martin Mokrejs).
     * correct computation for toolbar height; layout manager already takes
       into account borderWidth resource.
     * implement VT320-style SCS (select character set) for ISO Latin-1
       supplemental.
     * fixes for vt100-style character sets in UTF-8 mode (Ubuntu #230919).
     * fix to make luit work with xterm's -ls option (report/patch by
       Marius Tolzmann).
     * update config.guess, config.sub

diffstat:

 x11/xterm/Makefile         |   4 ++--
 x11/xterm/distinfo         |  12 +++++-------
 x11/xterm/patches/patch-aa |   4 ++--
 x11/xterm/patches/patch-ab |  13 -------------
 x11/xterm/patches/patch-ac |  13 -------------
 5 files changed, 9 insertions(+), 37 deletions(-)

diffs (80 lines):

diff -r 38d548dedf47 -r f552e398583e x11/xterm/Makefile
--- a/x11/xterm/Makefile        Fri Aug 01 21:01:50 2008 +0000
+++ b/x11/xterm/Makefile        Fri Aug 01 23:14:47 2008 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.42 2008/05/04 07:33:22 dsainty Exp $
+# $NetBSD: Makefile,v 1.43 2008/08/01 23:14:47 bjs Exp $
 
-DISTNAME=      xterm-235
+DISTNAME=      xterm-236
 CATEGORIES=    x11
 MASTER_SITES=  ftp://invisible-island.net/xterm/ \
                http://www.sfr-fresh.com/unix/misc/
diff -r 38d548dedf47 -r f552e398583e x11/xterm/distinfo
--- a/x11/xterm/distinfo        Fri Aug 01 21:01:50 2008 +0000
+++ b/x11/xterm/distinfo        Fri Aug 01 23:14:47 2008 +0000
@@ -1,8 +1,6 @@
-$NetBSD: distinfo,v 1.25 2008/07/02 13:50:56 obache Exp $
+$NetBSD: distinfo,v 1.26 2008/08/01 23:14:47 bjs Exp $
 
-SHA1 (xterm-235.tgz) = 4d449a9e50e342e0b7a6deba9d713e6ba9323d1e
-RMD160 (xterm-235.tgz) = 8a3cb03df08ad9da8d4391de612ec6e8f1573bcb
-Size (xterm-235.tgz) = 857714 bytes
-SHA1 (patch-aa) = cf93a5388106cf08bf7145890a45be7c12d186f6
-SHA1 (patch-ab) = dfe0344130c1e65ede160fa313ffd609baeead25
-SHA1 (patch-ac) = 3c415b0bd3a63f548567e768ea21d98c548bff21
+SHA1 (xterm-236.tgz) = 5219f67149d223b214c4e2353fb970ed95e58c76
+RMD160 (xterm-236.tgz) = fd5738cf4ec979d92e843c9d6f3a02279a02ade3
+Size (xterm-236.tgz) = 859451 bytes
+SHA1 (patch-aa) = f975c694ffd05be7d56adbaf55713fc694e9c997
diff -r 38d548dedf47 -r f552e398583e x11/xterm/patches/patch-aa
--- a/x11/xterm/patches/patch-aa        Fri Aug 01 21:01:50 2008 +0000
+++ b/x11/xterm/patches/patch-aa        Fri Aug 01 23:14:47 2008 +0000
@@ -1,11 +1,11 @@
-$NetBSD: patch-aa,v 1.8 2008/04/21 17:10:40 bjs Exp $
+$NetBSD: patch-aa,v 1.9 2008/08/01 23:14:47 bjs Exp $
 
 One needs to explicitly enable building in the toolbar code, yet 
 this turns it on by default, which not everyone wants.
 
 Let's attempt to convince xterm of this here.
 
---- main.c.orig        2008-02-27 19:28:00.000000000 -0500
+--- main.c.orig        2008-05-26 14:25:54.000000000 -0400
 +++ main.c
 @@ -881,7 +881,7 @@ static XtResource application_resources[
      Bres("sessionMgt", "SessionMgt", sessionMgt, True),
diff -r 38d548dedf47 -r f552e398583e x11/xterm/patches/patch-ab
--- a/x11/xterm/patches/patch-ab        Fri Aug 01 21:01:50 2008 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.6 2008/07/02 13:50:56 obache Exp $
-
---- configure.orig     2008-06-26 14:49:45 +0300
-+++ configure
-@@ -2823,7 +2823,7 @@ case $host_os in #(vi
- aix[45]*) #(vi
-       CPPFLAGS="$CPPFLAGS -D_ALL_SOURCE"
-       ;;
--freebsd*) #(vi
-+freebsd*|dragonfly*) #(vi
-       # 5.x headers associate
-       #       _XOPEN_SOURCE=600 with _POSIX_C_SOURCE=200112L
-       #       _XOPEN_SOURCE=500 with _POSIX_C_SOURCE=199506L
diff -r 38d548dedf47 -r f552e398583e x11/xterm/patches/patch-ac
--- a/x11/xterm/patches/patch-ac        Fri Aug 01 21:01:50 2008 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-$NetBSD: patch-ac,v 1.6 2008/07/02 13:50:56 obache Exp $
-
---- aclocal.m4.orig    2008-07-02 14:18:36 +0300
-+++ aclocal.m4
-@@ -2340,7 +2340,7 @@ case $host_os in #(vi
- aix[[45]]*) #(vi
-       CPPFLAGS="$CPPFLAGS -D_ALL_SOURCE"
-       ;;
--freebsd*) #(vi
-+freebsd*|dragonfly*) #(vi
-       # 5.x headers associate
-       #       _XOPEN_SOURCE=600 with _POSIX_C_SOURCE=200112L
-       #       _XOPEN_SOURCE=500 with _POSIX_C_SOURCE=199506L



Home | Main Index | Thread Index | Old Index