Changeset 7352c10 for patches/ncurses-5.7-branch_update-5.patch
- Timestamp:
- Jan 19, 2009, 12:16:00 AM (16 years ago)
- Branches:
- clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
- Children:
- 384af06
- Parents:
- 39806f8b
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
patches/ncurses-5.7-branch_update-5.patch
r39806f8b r7352c10 1 1 Submitted By: Jim Gifford (jim at cross-lfs dot org) 2 Date: 01- 08-20092 Date: 01-18-2009 3 3 Initial Package Version: 5.7 4 4 Origin: Upstream 5 5 Upstream Status: Applied 6 6 Description: This is a branch update for NCurses-5.7, and should be 7 rechecked periodically. This patch covers up to 5.7-200901 05.7 rechecked periodically. This patch covers up to 5.7-20090117. 8 8 9 diff -Naur ncurses-5.7.orig/Ada95/gen/Makefile.in ncurses-5.7/Ada95/gen/Makefile.in 10 --- ncurses-5.7.orig/Ada95/gen/Makefile.in 2008-10-04 15:58:31.000000000 -0700 11 +++ ncurses-5.7/Ada95/gen/Makefile.in 2009-01-18 23:56:40.000000000 -0800 12 @@ -1,5 +1,5 @@ 13 ############################################################################## 14 -# Copyright (c) 1998-2007,2008 Free Software Foundation, Inc. # 15 +# Copyright (c) 1998-2008,2009 Free Software Foundation, Inc. # 16 # # 17 # Permission is hereby granted, free of charge, to any person obtaining a # 18 # copy of this software and associated documentation files (the "Software"), # 19 @@ -28,7 +28,7 @@ 20 # 21 # Author: Juergen Pfeifer, 1996 22 # 23 -# $Id: Makefile.in,v 1.61 2008/10/04 22:58:31 tom Exp $ 24 +# $Id: Makefile.in,v 1.63 2009/01/11 01:11:35 tom Exp $ 25 # 26 .SUFFIXES: 27 28 @@ -81,7 +81,7 @@ 29 M4 = m4 30 M4FLAGS = -DNCURSES_EXT_FUNCS=@NCURSES_EXT_FUNCS@ 31 32 -ADACURSES_CONFIG = adacurses-config 33 +ADACURSES_CONFIG = adacurses@DFT_ARG_SUFFIX@-config 34 35 WRAPPER = sh $(top_srcdir)/misc/shlib 36 GENERATE = ./gen$x '@DFT_ARG_SUFFIX@' 37 @@ -166,6 +166,7 @@ 38 39 sources: 40 41 +$(DESTDIR)$(bindir) \ 42 $(ADA_INCLUDE) \ 43 $(ADA_OBJECTS) : 44 sh $(top_srcdir)/mkdirs.sh $@ 45 @@ -187,8 +188,8 @@ 46 @-chmod u+x $(ADA_SRCDIR)/*.ali 47 48 install \ 49 -install.libs :: $(DESTDIR)$(bindir) adacurses-config 50 - $(INSTALL_PROG) adacurses-config $(DESTDIR)$(bindir)/$(ADACURSES_CONFIG) 51 +install.libs :: $(DESTDIR)$(bindir) $(ADACURSES_CONFIG) 52 + $(INSTALL_PROG) $(ADACURSES_CONFIG) $(DESTDIR)$(bindir)/$(ADACURSES_CONFIG) 53 54 uninstall \ 55 uninstall.libs :: 56 @@ -398,7 +399,7 @@ 57 -rm -f $(GEN_TARGETS) instab.tmp *.ad[bs] *.html *.ali *.tmp 58 59 distclean :: clean 60 - -rm -f adacurses-config 61 + -rm -f $(ADACURSES_CONFIG) 62 -rm -f Makefile 63 64 realclean :: distclean 65 diff -Naur ncurses-5.7.orig/Ada95/gen/adacurses-config.in ncurses-5.7/Ada95/gen/adacurses-config.in 66 --- ncurses-5.7.orig/Ada95/gen/adacurses-config.in 2007-04-07 14:06:50.000000000 -0700 67 +++ ncurses-5.7/Ada95/gen/adacurses-config.in 2009-01-18 23:56:40.000000000 -0800 68 @@ -1,18 +1,47 @@ 69 #! /bin/sh 70 -# $Id: adacurses-config.in,v 1.2 2007/04/07 21:06:50 tom Exp $ 71 -# 72 -# This script will return the option to add to `gnatmake' for using 73 -# AdaCurses. 74 +# $Id: adacurses-config.in,v 1.5 2009/01/11 00:08:19 tom Exp $ 75 +############################################################################## 76 +# Copyright (c) 2007,2009 Free Software Foundation, Inc. # 77 +# # 78 +# Permission is hereby granted, free of charge, to any person obtaining a # 79 +# copy of this software and associated documentation files (the "Software"), # 80 +# to deal in the Software without restriction, including without limitation # 81 +# the rights to use, copy, modify, merge, publish, distribute, distribute # 82 +# with modifications, sublicense, and/or sell copies of the Software, and to # 83 +# permit persons to whom the Software is furnished to do so, subject to the # 84 +# following conditions: # 85 +# # 86 +# The above copyright notice and this permission notice shall be included in # 87 +# all copies or substantial portions of the Software. # 88 +# # 89 +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # 90 +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # 91 +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL # 92 +# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # 93 +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # 94 +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # 95 +# DEALINGS IN THE SOFTWARE. # 96 +# # 97 +# Except as contained in this notice, the name(s) of the above copyright # 98 +# holders shall not be used in advertising or otherwise to promote the sale, # 99 +# use or other dealings in this Software without prior written # 100 +# authorization. # 101 +############################################################################## 102 # 103 +# This script returns the options to add to `gnatmake' for using AdaCurses. 104 + 105 +DESTDIR=@DESTDIR@ 106 +prefix=@prefix@ 107 +exec_prefix=@exec_prefix@ 108 +libdir=@libdir@ 109 110 -prefix="@prefix@" 111 -exec_prefix="@exec_prefix@" 112 -libdir="@libdir@" 113 +ADA_INCLUDE=@ADA_INCLUDE@ 114 +ADA_OBJECTS=@ADA_OBJECTS@ 115 116 -VERSION="@NCURSES_MAJOR@.@NCURSES_MINOR@.@NCURSES_PATCH@" 117 +VERSION=@NCURSES_MAJOR@.@NCURSES_MINOR@.@NCURSES_PATCH@ 118 119 -CFLAGS="-I$libdir/adacurses -L$libdir/adacurses" 120 -LIBS="-L$prefix/lib -lAdaCurses" 121 +CFLAGS="-I$ADA_INCLUDE -aO$ADA_OBJECTS" 122 +LIBS="-L$ADA_OBJECTS -lAdaCurses" 123 124 case "x$1" in 125 x--version) 126 @@ -26,10 +55,10 @@ 127 ;; 128 x) 129 # if no parameter is given, give what gnatmake needs 130 - echo $CFLAGS -largs $LIBS 131 + echo "$CFLAGS -i -largs $LIBS" 132 ;; 133 *) 134 - echo 'Usage: adacurses-config [--version | --cflags | --libs]' >&2 135 + echo 'Usage: adacurses@DFT_ARG_SUFFIX@-config [--version | --cflags | --libs]' >&2 136 exit 1 137 ;; 138 esac 9 139 diff -Naur ncurses-5.7.orig/Ada95/samples/Makefile.in ncurses-5.7/Ada95/samples/Makefile.in 10 140 --- ncurses-5.7.orig/Ada95/samples/Makefile.in 2006-12-17 08:45:02.000000000 -0800 11 +++ ncurses-5.7/Ada95/samples/Makefile.in 2009-01- 08 19:48:08.000000000 -0800141 +++ ncurses-5.7/Ada95/samples/Makefile.in 2009-01-18 23:56:40.000000000 -0800 12 142 @@ -1,5 +1,5 @@ 13 143 ############################################################################## 14 144 -# Copyright (c) 1998-2004,2005 Free Software Foundation, Inc. # 15 +# Copyright (c) 1998-200 5,2008Free Software Foundation, Inc. #145 +# Copyright (c) 1998-2008,2009 Free Software Foundation, Inc. # 16 146 # # 17 147 # Permission is hereby granted, free of charge, to any person obtaining a # … … 22 152 # 23 153 -# $Id: Makefile.in,v 1.34 2006/12/17 16:45:02 tom Exp $ 24 +# $Id: Makefile.in,v 1.3 5 2008/11/23 00:17:20 juergenExp $154 +# $Id: Makefile.in,v 1.36 2009/01/11 01:11:54 tom Exp $ 25 155 # 26 156 .SUFFIXES: 27 157 158 @@ -88,8 +88,8 @@ 159 160 CARGS =-cargs $(ADAFLAGS) 161 LARGS =-largs @TEST_ARG2@ $(LD_FLAGS) -lAdaCurses 162 - 163 -PROGS = tour rain ncurses 164 + 165 +PROGS = tour rain ncurses 166 167 TOUR_OBJS = tour.o sample.o sample-curses_demo.o sample-explanation.o \ 168 sample-form_demo.o sample-function_key_setting.o \ 28 169 @@ -145,7 +145,7 @@ 29 170 … … 37 178 diff -Naur ncurses-5.7.orig/Ada95/src/Makefile.in ncurses-5.7/Ada95/src/Makefile.in 38 179 --- ncurses-5.7.orig/Ada95/src/Makefile.in 2007-09-15 11:22:24.000000000 -0700 39 +++ ncurses-5.7/Ada95/src/Makefile.in 2009-01- 08 19:48:29.000000000 -0800180 +++ ncurses-5.7/Ada95/src/Makefile.in 2009-01-18 23:56:40.000000000 -0800 40 181 @@ -1,5 +1,5 @@ 41 182 ############################################################################## … … 50 191 # 51 192 -# $Id: Makefile.in,v 1.31 2007/09/15 18:22:24 tom Exp $ 52 +# $Id: Makefile.in,v 1.3 2 2009/01/03 19:12:01tom Exp $193 +# $Id: Makefile.in,v 1.34 2009/01/11 01:11:44 tom Exp $ 53 194 # 54 195 .SUFFIXES: 55 196 56 @@ -46,7 +46,7 @@ 57 INSTALL_DATA = @INSTALL_DATA@ 197 @@ -36,17 +36,22 @@ 198 THIS = Makefile 199 200 MODEL = ../../@DFT_OBJ_SUBDIR@ 201 + 202 DESTDIR = @DESTDIR@ 203 + 204 +top_srcdir = @top_srcdir@ 205 srcdir = @srcdir@ 206 prefix = @prefix@ 207 exec_prefix = @exec_prefix@ 208 -ADA_INCLUDE = @ADA_INCLUDE@ 209 + 210 +ADA_INCLUDE = $(DESTDIR)@ADA_INCLUDE@ 211 +ADA_OBJECTS = $(DESTDIR)@ADA_OBJECTS@ 212 213 INSTALL = @INSTALL@ 214 -INSTALL_DATA = @INSTALL_DATA@ 215 +INSTALL_LIB = @INSTALL@ @INSTALL_LIB@ 58 216 59 217 AR = @AR@ … … 63 221 LN_S = @LN_S@ 64 222 65 @@ -168,7 +168,7 @@ 223 @@ -75,11 +80,12 @@ 224 ADAFLAGS = @ADAFLAGS@ -I. -I$(srcdir) 225 226 ADAMAKE = @cf_ada_make@ 227 -ADAMAKEFLAGS = 228 +ADAMAKEFLAGS = 229 230 CARGS = -cargs $(ADAFLAGS) 231 LARGS = 232 233 +LIBRARY_FILE = libAdaCurses.a 234 ALIB = @cf_ada_package@ 235 ABASE = $(ALIB)-curses 236 237 @@ -164,21 +170,25 @@ 238 $(ABASE)-text_io-complex_io.o 239 240 241 -all :: libAdaCurses.a 242 +all :: $(LIBRARY_FILE) 66 243 @echo done 67 244 68 245 -libAdaCurses.a :: dotouch $(LIBOBJS) @cf_generic_objects@ 69 246 - $(AR) $(AR_OPTS) $@ $(LIBOBJS) @cf_generic_objects@ 247 - 248 -dotouch : 249 - @sh -c 'for f in $(LIBALIS) $(GENALIS); do test -f $$f || touch $$f; done' 250 +$(LIBRARY_FILE) :: $(LIBOBJS) @cf_generic_objects@ 70 251 + $(AR) $(ARFLAGS) $@ $(LIBOBJS) @cf_generic_objects@ 71 252 72 dotouch : 73 @sh -c 'for f in $(LIBALIS) $(GENALIS); do test -f $$f || touch $$f; done' 253 sources : 254 @echo made $@ 255 256 libs \ 257 install \ 258 -install.libs \ 259 +install.libs :: $(LIBRARY_FILE) 260 + @echo made $(LIBRARY_FILE) 261 + 262 +install \ 263 +install.libs :: $(LIBRARY_FILE) 264 + @$(top_srcdir)/tar-copy.sh $(LIBRARY_FILE) . $(ADA_OBJECTS) 265 + @echo made $@ 266 + 267 uninstall \ 268 uninstall.libs :: 269 @echo made $@ 74 270 diff -Naur ncurses-5.7.orig/Ada95/src/terminal_interface-curses-mouse.adb ncurses-5.7/Ada95/src/terminal_interface-curses-mouse.adb 75 271 --- ncurses-5.7.orig/Ada95/src/terminal_interface-curses-mouse.adb 2008-07-26 11:51:11.000000000 -0700 76 +++ ncurses-5.7/Ada95/src/terminal_interface-curses-mouse.adb 2009-01- 08 19:48:08.000000000 -0800272 +++ ncurses-5.7/Ada95/src/terminal_interface-curses-mouse.adb 2009-01-18 23:56:21.000000000 -0800 77 273 @@ -35,8 +35,8 @@ 78 274 ------------------------------------------------------------------------------ … … 97 293 diff -Naur ncurses-5.7.orig/INSTALL ncurses-5.7/INSTALL 98 294 --- ncurses-5.7.orig/INSTALL 2008-11-02 13:13:51.000000000 -0800 99 +++ ncurses-5.7/INSTALL 2009-01- 08 19:48:29.000000000 -0800295 +++ ncurses-5.7/INSTALL 2009-01-18 23:56:34.000000000 -0800 100 296 @@ -1,5 +1,5 @@ 101 297 ------------------------------------------------------------------------------- … … 148 344 diff -Naur ncurses-5.7.orig/MANIFEST ncurses-5.7/MANIFEST 149 345 --- ncurses-5.7.orig/MANIFEST 2008-10-25 16:47:24.000000000 -0700 150 +++ ncurses-5.7/MANIFEST 2009-01- 08 19:48:29.000000000 -0800346 +++ ncurses-5.7/MANIFEST 2009-01-18 23:56:34.000000000 -0800 151 347 @@ -640,6 +640,7 @@ 152 348 ./man/ncurses.3x … … 191 387 diff -Naur ncurses-5.7.orig/NEWS ncurses-5.7/NEWS 192 388 --- ncurses-5.7.orig/NEWS 2008-11-01 17:56:22.000000000 -0700 193 +++ ncurses-5.7/NEWS 2009-01- 08 19:48:34.000000000 -0800389 +++ ncurses-5.7/NEWS 2009-01-18 23:56:41.000000000 -0800 194 390 @@ -1,5 +1,5 @@ 195 391 ------------------------------------------------------------------------------- … … 204 400 ------------------------------------------------------------------------------- 205 401 --- $Id: NEWS,v 1.1320 2008/11/02 00:56:22 tom Exp $ 206 +-- $Id: NEWS,v 1.135 3 2009/01/06 00:26:35tom Exp $402 +-- $Id: NEWS,v 1.1358 2009/01/17 23:54:20 tom Exp $ 207 403 ------------------------------------------------------------------------------- 208 404 209 405 This is a log of changes that ncurses has gone through since Zeyd started 210 @@ -45,6 +45,1 05 @@406 @@ -45,6 +45,125 @@ 211 407 Changes through 1.9.9e did not credit all contributions; 212 408 it is not possible to add this information. 213 409 410 +20090117 411 + + add -shared option to MK_SHARED_LIB when -Bsharable is used, for 412 + *BSD's, without which "main" might be one of the shared library's 413 + dependencies (report/analysis by Ken Dickey). 414 + + modify waddch_literal(), updating line-pointer after a multicolumn 415 + character is found to not fit on the current row, and wrapping is 416 + done. Since the line-pointer was not updated, the wrapped 417 + multicolumn character was written to the beginning of the current row 418 + (cf: 20041023, reported by "Nick" regarding problem with ncmpc 419 + http://musicpd.org/mantis/bug_view_page.php?bug_id=1930). 420 + 421 +20090110 422 + + add screen.Eterm terminfo entry (GenToo #124887) -TD 423 + + modify adacurses-config to look for ".ali" files in the adalib 424 + directory. 425 + + correct install for Ada95, which omitted libAdaCurses.a used in 426 + adacurses-config 427 + + change install for adacurses-config to provide additional flavors 428 + such as adacursesw-config, for ncursesw (GenToo #167849). 429 + 214 430 +20090105 215 431 + + remove undeveloped feature in ncurses-config.in for setting … … 316 532 diff -Naur ncurses-5.7.orig/TO-DO ncurses-5.7/TO-DO 317 533 --- ncurses-5.7.orig/TO-DO 2008-10-11 12:22:27.000000000 -0700 318 +++ ncurses-5.7/TO-DO 2009-01- 08 19:48:12.000000000 -0800534 +++ ncurses-5.7/TO-DO 2009-01-18 23:56:23.000000000 -0800 319 535 @@ -25,7 +25,7 @@ 320 536 -- sale, use or other dealings in this Software without prior written -- … … 394 610 diff -Naur ncurses-5.7.orig/aclocal.m4 ncurses-5.7/aclocal.m4 395 611 --- ncurses-5.7.orig/aclocal.m4 2008-10-25 15:15:32.000000000 -0700 396 +++ ncurses-5.7/aclocal.m4 2009-01- 08 19:48:29.000000000 -0800612 +++ ncurses-5.7/aclocal.m4 2009-01-18 23:56:41.000000000 -0800 397 613 @@ -1,5 +1,5 @@ 398 614 dnl*************************************************************************** … … 407 623 dnl 408 624 -dnl $Id: aclocal.m4,v 1.470 2008/10/25 22:15:32 tom Exp $ 409 +dnl $Id: aclocal.m4,v 1.48 1 2009/01/04 00:11:12tom Exp $625 +dnl $Id: aclocal.m4,v 1.482 2009/01/17 21:10:05 tom Exp $ 410 626 dnl Macros used in NCURSES auto-configuration script. 411 627 dnl … … 865 1081 dnl --------------------------------------------------------------------------- 866 1082 -dnl CF_SHARED_OPTS version: 53 updated: 2008/10/25 18:14:20 867 +dnl CF_SHARED_OPTS version: 5 6 updated: 2009/01/03 19:10:381083 +dnl CF_SHARED_OPTS version: 57 updated: 2009/01/17 16:10:05 868 1084 dnl -------------- 869 1085 dnl -------------- … … 921 1137 fi 922 1138 CF_SHARED_SONAME 923 @@ -4306, 7 +4445,7@@1139 @@ -4306,12 +4445,12 @@ 924 1140 LOCAL_LDFLAGS2="$LOCAL_LDFLAGS" 925 1141 fi … … 930 1146 fi 931 1147 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC" 932 @@ -4323,7 +4462,7 @@ 1148 CF_SHARED_SONAME 1149 - MK_SHARED_LIB='${CC} ${CFLAGS} -Wl,-Bshareable,-soname,'$cf_cv_shared_soname',-stats,-lc -o $[@]' 1150 + MK_SHARED_LIB='${CC} ${CFLAGS} -shared -Wl,-Bshareable,-soname,'$cf_cv_shared_soname',-stats,-lc -o $[@]' 1151 ;; 1152 nto-qnx*|openbsd*|freebsd[[12]].*) 1153 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC" 1154 @@ -4323,15 +4462,15 @@ 933 1155 if test "$DFT_LWR_MODEL" = "shared" && test "$cf_cv_ld_rpath" = yes ; then 934 1156 LOCAL_LDFLAGS="-rpath \$(LOCAL_LIBDIR)" … … 939 1161 fi 940 1162 CF_SHARED_SONAME 941 @@ -4331,7 +4470,7 @@ 1163 - MK_SHARED_LIB='${LD} -Bshareable -soname=`basename $[@]` -o $[@]' 1164 + MK_SHARED_LIB='${LD} -shared -Bshareable -soname=`basename $[@]` -o $[@]' 942 1165 ;; 943 1166 netbsd*) … … 948 1171 LOCAL_LDFLAGS="-Wl,-rpath,\$(LOCAL_LIBDIR)" 949 1172 LOCAL_LDFLAGS2="$LOCAL_LDFLAGS" 1173 @@ -4346,7 +4485,7 @@ 1174 CF_SHARED_SONAME 1175 MK_SHARED_LIB='${CC} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname' -o $[@]' 1176 else 1177 - MK_SHARED_LIB='${LD} -Bshareable -o $[@]' 1178 + MK_SHARED_LIB='${LD} -shared -Bshareable -o $[@]' 1179 fi 1180 ;; 1181 osf*|mls+*) 950 1182 @@ -4365,7 +4504,7 @@ 951 1183 LOCAL_LDFLAGS2="$LOCAL_LDFLAGS" … … 1136 1368 diff -Naur ncurses-5.7.orig/c++/Makefile.in ncurses-5.7/c++/Makefile.in 1137 1369 --- ncurses-5.7.orig/c++/Makefile.in 2007-04-28 08:29:12.000000000 -0700 1138 +++ ncurses-5.7/c++/Makefile.in 2009-01- 08 19:48:29.000000000 -08001370 +++ ncurses-5.7/c++/Makefile.in 2009-01-18 23:56:34.000000000 -0800 1139 1371 @@ -1,6 +1,6 @@ 1140 1372 -# $Id: Makefile.in,v 1.84 2007/04/28 15:29:12 tom Exp $ … … 1170 1402 diff -Naur ncurses-5.7.orig/c++/cursesw.cc ncurses-5.7/c++/cursesw.cc 1171 1403 --- ncurses-5.7.orig/c++/cursesw.cc 2007-12-15 15:01:57.000000000 -0800 1172 +++ ncurses-5.7/c++/cursesw.cc 2009-01- 08 19:48:09.000000000 -08001404 +++ ncurses-5.7/c++/cursesw.cc 2009-01-18 23:56:21.000000000 -0800 1173 1405 @@ -1,6 +1,6 @@ 1174 1406 // * this is for making emacs happy: -*-Mode: C++;-*- … … 1207 1439 diff -Naur ncurses-5.7.orig/config.guess ncurses-5.7/config.guess 1208 1440 --- ncurses-5.7.orig/config.guess 2008-08-30 13:25:07.000000000 -0700 1209 +++ ncurses-5.7/config.guess 2009-01- 08 19:48:29.000000000 -08001441 +++ ncurses-5.7/config.guess 2009-01-18 23:56:34.000000000 -0800 1210 1442 @@ -4,7 +4,7 @@ 1211 1443 # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 … … 1277 1509 diff -Naur ncurses-5.7.orig/config.sub ncurses-5.7/config.sub 1278 1510 --- ncurses-5.7.orig/config.sub 2008-08-30 13:25:02.000000000 -0700 1279 +++ ncurses-5.7/config.sub 2009-01- 08 19:48:29.000000000 -08001511 +++ ncurses-5.7/config.sub 2009-01-18 23:56:34.000000000 -0800 1280 1512 @@ -4,7 +4,7 @@ 1281 1513 # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 … … 1361 1593 diff -Naur ncurses-5.7.orig/configure ncurses-5.7/configure 1362 1594 --- ncurses-5.7.orig/configure 2008-10-25 17:04:38.000000000 -0700 1363 +++ ncurses-5.7/configure 2009-01- 08 19:48:34.000000000 -08001595 +++ ncurses-5.7/configure 2009-01-18 23:56:41.000000000 -0800 1364 1596 @@ -1,7 +1,7 @@ 1365 1597 #! /bin/sh 1366 1598 -# From configure.in Revision: 1.454 . 1367 +# From configure.in Revision: 1.46 3.1599 +# From configure.in Revision: 1.464 . 1368 1600 # Guess values for system-dependent variables and create Makefiles. 1369 1601 -# Generated by Autoconf 2.52.20080325. … … 4752 4984 fi 4753 4985 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC" 4986 @@ -5143,7 +5393,7 @@ 4987 cf_cv_shared_soname='`basename $@`' 4988 fi 4989 4990 - MK_SHARED_LIB='${CC} ${CFLAGS} -Wl,-Bshareable,-soname,'$cf_cv_shared_soname',-stats,-lc -o $@' 4991 + MK_SHARED_LIB='${CC} ${CFLAGS} -shared -Wl,-Bshareable,-soname,'$cf_cv_shared_soname',-stats,-lc -o $@' 4992 ;; 4993 nto-qnx*|openbsd*|freebsd[12].*) 4994 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC" 4754 4995 @@ -5155,7 +5405,7 @@ 4755 4996 if test "$DFT_LWR_MODEL" = "shared" && test "$cf_cv_ld_rpath" = yes ; then … … 4761 5002 fi 4762 5003 4763 @@ -5170,7 +5420,7 @@ 5004 @@ -5166,11 +5416,11 @@ 5005 cf_cv_shared_soname='`basename $@`' 5006 fi 5007 5008 - MK_SHARED_LIB='${LD} -Bshareable -soname=`basename $@` -o $@' 5009 + MK_SHARED_LIB='${LD} -shared -Bshareable -soname=`basename $@` -o $@' 4764 5010 ;; 4765 5011 netbsd*) … … 4770 5016 LOCAL_LDFLAGS="-Wl,-rpath,\$(LOCAL_LIBDIR)" 4771 5017 LOCAL_LDFLAGS2="$LOCAL_LDFLAGS" 5018 @@ -5192,7 +5442,7 @@ 5019 5020 MK_SHARED_LIB='${CC} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname' -o $@' 5021 else 5022 - MK_SHARED_LIB='${LD} -Bshareable -o $@' 5023 + MK_SHARED_LIB='${LD} -shared -Bshareable -o $@' 5024 fi 5025 ;; 5026 osf*|mls+*) 4772 5027 @@ -5211,7 +5461,7 @@ 4773 5028 LOCAL_LDFLAGS2="$LOCAL_LDFLAGS" … … 12578 12833 12579 12834 SUB_MAKEFILES= 12580 @@ -16639,1 0 +16999,10@@12835 @@ -16639,15 +16999,15 @@ 12581 12836 done 12582 12837 … … 12593 12848 fi 12594 12849 12850 if test "$cf_with_ada" != "no" && test "$cf_cv_prog_gnat_correct" != "no"; then 12851 - SUB_MAKEFILES="$SUB_MAKEFILES Ada95/gen/adacurses-config" 12852 + SUB_MAKEFILES="$SUB_MAKEFILES Ada95/gen/adacurses${DFT_ARG_SUFFIX}-config:Ada95/gen/adacurses-config.in" 12853 fi 12854 12855 DIRS_TO_MAKE="lib" 12595 12856 @@ -16760,18 +17120,18 @@ 12596 12857 ### If we're building with rpath, try to link non-standard libs that way too. … … 13017 13278 diff -Naur ncurses-5.7.orig/configure.in ncurses-5.7/configure.in 13018 13279 --- ncurses-5.7.orig/configure.in 2008-10-18 07:53:32.000000000 -0700 13019 +++ ncurses-5.7/configure.in 2009-01- 08 19:48:34.000000000 -080013280 +++ ncurses-5.7/configure.in 2009-01-18 23:56:40.000000000 -0800 13020 13281 @@ -1,5 +1,5 @@ 13021 13282 dnl*************************************************************************** … … 13030 13291 dnl 13031 13292 -dnl $Id: configure.in,v 1.454 2008/10/18 14:53:32 tom Exp $ 13032 +dnl $Id: configure.in,v 1.46 3 2009/01/06 01:40:09tom Exp $13293 +dnl $Id: configure.in,v 1.464 2009/01/10 19:18:03 tom Exp $ 13033 13294 dnl Process this file with autoconf to produce a configure script. 13034 13295 dnl … … 13038 13299 AC_PREREQ(2.13.20020210) 13039 13300 -AC_REVISION($Revision: 1.454 $) 13040 +AC_REVISION($Revision: 1.46 3$)13301 +AC_REVISION($Revision: 1.464 $) 13041 13302 AC_INIT(ncurses/base/lib_initscr.c) 13042 13303 AC_CONFIG_HEADER(include/ncurses_cfg.h:include/ncurses_cfg.hin) … … 13159 13420 AC_SUBST(WITH_OVERWRITE) 13160 13421 AC_SUBST(TICS_LIST) 13422 @@ -1742,7 +1778,7 @@ 13423 CF_SRC_MODULES($modules_to_build) 13424 13425 if test "$cf_with_ada" != "no" && test "$cf_cv_prog_gnat_correct" != "no"; then 13426 - SUB_MAKEFILES="$SUB_MAKEFILES Ada95/gen/adacurses-config" 13427 + SUB_MAKEFILES="$SUB_MAKEFILES Ada95/gen/adacurses${DFT_ARG_SUFFIX}-config:Ada95/gen/adacurses-config.in" 13428 fi 13429 13430 CF_DIRS_TO_MAKE 13161 13431 @@ -1765,8 +1801,19 @@ 13162 13432 CF_SUBST_IF(["$ac_cv_header_termios_h" = yes], HAVE_TERMIOS_H, 1, 0) … … 13207 13477 diff -Naur ncurses-5.7.orig/dist.mk ncurses-5.7/dist.mk 13208 13478 --- ncurses-5.7.orig/dist.mk 2008-11-01 17:58:38.000000000 -0700 13209 +++ ncurses-5.7/dist.mk 2009-01- 08 19:48:34.000000000 -080013479 +++ ncurses-5.7/dist.mk 2009-01-18 23:56:41.000000000 -0800 13210 13480 @@ -25,7 +25,7 @@ 13211 13481 # use or other dealings in this Software without prior written # … … 13213 13483 ############################################################################## 13214 13484 -# $Id: dist.mk,v 1.671 2008/11/02 00:58:38 tom Exp $ 13215 +# $Id: dist.mk,v 1.68 1 2009/01/05 23:52:40tom Exp $13485 +# $Id: dist.mk,v 1.683 2009/01/17 16:29:15 tom Exp $ 13216 13486 # Makefile for creating ncurses distributions. 13217 13487 # … … 13222 13492 NCURSES_MINOR = 7 13223 13493 -NCURSES_PATCH = 20081102 13224 +NCURSES_PATCH = 200901 0513494 +NCURSES_PATCH = 20090117 13225 13495 13226 13496 # We don't append the patch to the version, since this only applies to releases … … 13228 13498 diff -Naur ncurses-5.7.orig/form/Makefile.in ncurses-5.7/form/Makefile.in 13229 13499 --- ncurses-5.7.orig/form/Makefile.in 2007-04-28 07:56:11.000000000 -0700 13230 +++ ncurses-5.7/form/Makefile.in 2009-01- 08 19:48:30.000000000 -080013500 +++ ncurses-5.7/form/Makefile.in 2009-01-18 23:56:35.000000000 -0800 13231 13501 @@ -1,6 +1,6 @@ 13232 13502 -# $Id: Makefile.in,v 1.47 2007/04/28 14:56:11 tom Exp $ … … 13249 13519 diff -Naur ncurses-5.7.orig/form/frm_driver.c ncurses-5.7/form/frm_driver.c 13250 13520 --- ncurses-5.7.orig/form/frm_driver.c 2008-10-18 09:25:00.000000000 -0700 13251 +++ ncurses-5.7/form/frm_driver.c 2009-01- 08 19:48:14.000000000 -080013521 +++ ncurses-5.7/form/frm_driver.c 2009-01-18 23:56:25.000000000 -0800 13252 13522 @@ -32,7 +32,7 @@ 13253 13523 … … 13269 13539 diff -Naur ncurses-5.7.orig/include/curses.h.in ncurses-5.7/include/curses.h.in 13270 13540 --- ncurses-5.7.orig/include/curses.h.in 2008-08-30 13:11:29.000000000 -0700 13271 +++ ncurses-5.7/include/curses.h.in 2009-01- 08 19:48:22.000000000 -080013541 +++ ncurses-5.7/include/curses.h.in 2009-01-18 23:56:29.000000000 -0800 13272 13542 @@ -32,7 +32,7 @@ 13273 13543 * and: Thomas E. Dickey 1996-on * … … 13325 13595 diff -Naur ncurses-5.7.orig/include/curses.tail ncurses-5.7/include/curses.tail 13326 13596 --- ncurses-5.7.orig/include/curses.tail 2008-07-05 13:20:38.000000000 -0700 13327 +++ ncurses-5.7/include/curses.tail 2009-01- 08 19:48:09.000000000 -080013597 +++ ncurses-5.7/include/curses.tail 2009-01-18 23:56:21.000000000 -0800 13328 13598 @@ -1,4 +1,4 @@ 13329 13599 -/* $Id: curses.tail,v 1.16 2008/07/05 20:20:38 tom Exp $ */ … … 13342 13612 diff -Naur ncurses-5.7.orig/include/curses.wide ncurses-5.7/include/curses.wide 13343 13613 --- ncurses-5.7.orig/include/curses.wide 2007-03-10 09:52:23.000000000 -0800 13344 +++ ncurses-5.7/include/curses.wide 2009-01- 08 19:48:12.000000000 -080013614 +++ ncurses-5.7/include/curses.wide 2009-01-18 23:56:23.000000000 -0800 13345 13615 @@ -1,9 +1,11 @@ 13346 13616 -/* $Id: curses.wide,v 1.34 2007/03/10 17:52:23 tom Exp $ */ … … 13358 13628 diff -Naur ncurses-5.7.orig/man/curs_mouse.3x ncurses-5.7/man/curs_mouse.3x 13359 13629 --- ncurses-5.7.orig/man/curs_mouse.3x 2006-12-30 15:43:34.000000000 -0800 13360 +++ ncurses-5.7/man/curs_mouse.3x 2009-01- 08 19:48:09.000000000 -080013630 +++ ncurses-5.7/man/curs_mouse.3x 2009-01-18 23:56:21.000000000 -0800 13361 13631 @@ -1,6 +1,6 @@ 13362 13632 '\" t … … 13404 13674 diff -Naur ncurses-5.7.orig/man/keybound.3x ncurses-5.7/man/keybound.3x 13405 13675 --- ncurses-5.7.orig/man/keybound.3x 2006-02-25 13:47:06.000000000 -0800 13406 +++ ncurses-5.7/man/keybound.3x 2009-01- 08 19:48:18.000000000 -080013676 +++ ncurses-5.7/man/keybound.3x 2009-01-18 23:56:27.000000000 -0800 13407 13677 @@ -1,5 +1,5 @@ 13408 13678 .\"*************************************************************************** … … 13425 13695 diff -Naur ncurses-5.7.orig/man/tabs.1 ncurses-5.7/man/tabs.1 13426 13696 --- ncurses-5.7.orig/man/tabs.1 1969-12-31 16:00:00.000000000 -0800 13427 +++ ncurses-5.7/man/tabs.1 2009-01- 08 19:48:01.000000000 -080013697 +++ ncurses-5.7/man/tabs.1 2009-01-18 23:56:19.000000000 -0800 13428 13698 @@ -0,0 +1,143 @@ 13429 13699 +.\"*************************************************************************** … … 13572 13842 diff -Naur ncurses-5.7.orig/man/tset.1 ncurses-5.7/man/tset.1 13573 13843 --- ncurses-5.7.orig/man/tset.1 2006-12-24 07:00:30.000000000 -0800 13574 +++ ncurses-5.7/man/tset.1 2009-01- 08 19:48:01.000000000 -080013844 +++ ncurses-5.7/man/tset.1 2009-01-18 23:56:19.000000000 -0800 13575 13845 @@ -1,5 +1,5 @@ 13576 13846 .\"*************************************************************************** … … 13593 13863 diff -Naur ncurses-5.7.orig/menu/Makefile.in ncurses-5.7/menu/Makefile.in 13594 13864 --- ncurses-5.7.orig/menu/Makefile.in 2007-04-28 07:56:11.000000000 -0700 13595 +++ ncurses-5.7/menu/Makefile.in 2009-01- 08 19:48:30.000000000 -080013865 +++ ncurses-5.7/menu/Makefile.in 2009-01-18 23:56:35.000000000 -0800 13596 13866 @@ -1,6 +1,6 @@ 13597 13867 -# $Id: Makefile.in,v 1.48 2007/04/28 14:56:11 tom Exp $ … … 13614 13884 diff -Naur ncurses-5.7.orig/misc/Makefile.in ncurses-5.7/misc/Makefile.in 13615 13885 --- ncurses-5.7.orig/misc/Makefile.in 2007-03-31 08:54:17.000000000 -0700 13616 +++ ncurses-5.7/misc/Makefile.in 2009-01- 08 19:48:30.000000000 -080013886 +++ ncurses-5.7/misc/Makefile.in 2009-01-18 23:56:35.000000000 -0800 13617 13887 @@ -1,6 +1,6 @@ 13618 13888 -# $Id: Makefile.in,v 1.43 2007/03/31 15:54:17 tom Exp $ … … 13679 13949 diff -Naur ncurses-5.7.orig/misc/gen-pkgconfig.in ncurses-5.7/misc/gen-pkgconfig.in 13680 13950 --- ncurses-5.7.orig/misc/gen-pkgconfig.in 1969-12-31 16:00:00.000000000 -0800 13681 +++ ncurses-5.7/misc/gen-pkgconfig.in 2009-01- 08 19:48:32.000000000 -080013951 +++ ncurses-5.7/misc/gen-pkgconfig.in 2009-01-18 23:56:36.000000000 -0800 13682 13952 @@ -0,0 +1,119 @@ 13683 13953 +#!@SHELL@ … … 13802 14072 diff -Naur ncurses-5.7.orig/misc/ncurses-config.in ncurses-5.7/misc/ncurses-config.in 13803 14073 --- ncurses-5.7.orig/misc/ncurses-config.in 2007-03-17 13:02:19.000000000 -0700 13804 +++ ncurses-5.7/misc/ncurses-config.in 2009-01- 08 19:48:34.000000000 -080014074 +++ ncurses-5.7/misc/ncurses-config.in 2009-01-18 23:56:38.000000000 -0800 13805 14075 @@ -1,7 +1,7 @@ 13806 14076 #!@SHELL@ … … 13929 14199 diff -Naur ncurses-5.7.orig/misc/terminfo.src ncurses-5.7/misc/terminfo.src 13930 14200 --- ncurses-5.7.orig/misc/terminfo.src 2008-10-12 16:03:54.000000000 -0700 13931 +++ ncurses-5.7/misc/terminfo.src 2009-01- 08 19:48:12.000000000 -080014201 +++ ncurses-5.7/misc/terminfo.src 2009-01-18 23:56:40.000000000 -0800 13932 14202 @@ -6,8 +6,8 @@ 13933 14203 # Report bugs and new terminal descriptions to … … 13936 14206 -# $Revision: 1.341 $ 13937 14207 -# $Date: 2008/10/12 23:03:54 $ 13938 +# $Revision: 1.34 3$13939 +# $Date: 200 8/11/29 15:27:35$14208 +# $Revision: 1.345 $ 14209 +# $Date: 2009/01/11 00:47:37 $ 13940 14210 # 13941 14211 # The original header is preserved below for reference. It is noted that there … … 14013 14283 # Michael Schroeder, Oliver Laumann. The screen and 14014 14284 # screen-w entries came with version 3.7.1. The screen2 and screen3 entries 14015 @@ -5247,7 +5267,7 @@ 14285 @@ -4497,6 +4517,8 @@ 14286 cvvis@, flash@, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, 14287 kcuu1=\EOA, use=screen+fkeys, use=vt100+enq, 14288 use=rxvt+pcfkeys, use=vt220+keypad, use=screen, 14289 +screen.Eterm|screen in Eterm, 14290 + use=screen+fkeys, use=Eterm, 14291 # fix the backspace key 14292 screen.linux|screen in linux console, 14293 bw, 14294 @@ -5247,7 +5269,7 @@ 14016 14295 setab=\E[4%p1%dm, setaf=\E[3%p1%dm, 14017 14296 sgr=\E[0;10%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;%?%p7%t;8%;%?%p9%t;12%;m, … … 14022 14301 # Key definitions: 14023 14302 # The encodings for unshifted arrow keys, F1-F12, Home, Insert, etc. match the 14024 @@ -11060,7 +1108 0,7 @@14303 @@ -11060,7 +11082,7 @@ 14025 14304 sgr=\E[%?%p1%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p6%t1;%;m, 14026 14305 sgr0=\E[m, … … 14031 14310 14032 14311 aaa+rv|ann arbor ambassador in reverse video, 14033 @@ -12147,7 +1216 7,7 @@14312 @@ -12147,7 +12169,7 @@ 14034 14313 sgr=\E[%?%p1%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p6%t1;%;m, 14035 14314 sgr0=\E[m, smacs=\017$<1>, smcup=\E[=4l\E[1;24w\E2\r, … … 14040 14319 flash=\E[=205l$<200>\E[=205h, is1=\E[=103l\E[=205h, 14041 14320 use=avt-ns, 14042 @@ -14584,7 +1460 4,7 @@14321 @@ -14584,7 +14606,7 @@ 14043 14322 sc=\E[%y, 14044 14323 sgr=\E[%{0}%?%p1%p3%|%t%{7}%+%;%?%p2%t%{2}%+%;%?%p4%t%{5}%+%;%?%p6%t%{1}%+%;m%?%p8%t\E[%{32}%+%d%%{%;%?%p9%t\016%e\017%;, … … 14049 14328 # p9-w: Prism-9 in 132 column mode 14050 14329 # -------------------------------- 14051 @@ -16037,7 +1605 7,7 @@14330 @@ -16037,7 +16059,7 @@ 14052 14331 rep=%p1%c\E[%p2%{1}%-%db, rev=\E[7m, rmam=\E[?7l, 14053 14332 rmso=\E[m, rmul=\E[m, … … 14058 14337 # The tek4125 emulates a vt100 incorrectly - the scrolling region 14059 14338 # command is ignored. The following entry replaces <csr> with the needed 14060 @@ -17729,7 +177 49,7 @@14339 @@ -17729,7 +17751,7 @@ 14061 14340 rmul=\E[m, rs2=\E[?=h\Ec, s0ds=^O, s1ds=^N, 14062 14341 sgr=\E[0%?%p1%p3%|%t;7%;%?%p2%t;4%;%?%p4%t;5%;%?%p5%t;2%;%?%p7%t;8%;m%?%p9%t\016%e\017%;, … … 14067 14346 tws2102-sna|dku7102-sna|BULL Questar tws2102 for SNA, 14068 14347 dsl=\E[0;98v\E[2J\E[v, fsl=\E[v, is3=\Eb, tsl=\E[0;98v, 14069 @@ -21791,6 +2181 1,13@@14348 @@ -21791,6 +21813,16 @@ 14070 14349 # * add "aterm" -TD 14071 14350 # * add "linux2.6.26" -TD … … 14078 14357 +# * add eterm-color -TD 14079 14358 +# 14359 +# 2009-01-10 14360 +# * add screen.Eterm -TD 14361 +# 14080 14362 # The following sets edit modes for GNU EMACS. 14081 14363 # Local Variables: … … 14083 14365 diff -Naur ncurses-5.7.orig/mk-1st.awk ncurses-5.7/mk-1st.awk 14084 14366 --- ncurses-5.7.orig/mk-1st.awk 2007-03-24 15:10:55.000000000 -0700 14085 +++ ncurses-5.7/mk-1st.awk 2009-01- 08 19:48:32.000000000 -080014367 +++ ncurses-5.7/mk-1st.awk 2009-01-18 23:56:36.000000000 -0800 14086 14368 @@ -1,6 +1,6 @@ 14087 14369 -# $Id: mk-1st.awk,v 1.78 2007/03/24 22:10:55 tom Exp $ … … 14113 14395 diff -Naur ncurses-5.7.orig/ncurses/Makefile.in ncurses-5.7/ncurses/Makefile.in 14114 14396 --- ncurses-5.7.orig/ncurses/Makefile.in 2008-10-18 07:11:54.000000000 -0700 14115 +++ ncurses-5.7/ncurses/Makefile.in 2009-01- 08 19:48:30.000000000 -080014397 +++ ncurses-5.7/ncurses/Makefile.in 2009-01-18 23:56:35.000000000 -0800 14116 14398 @@ -1,6 +1,6 @@ 14117 14399 -# $Id: Makefile.in,v 1.113 2008/10/18 14:11:54 tom Exp $ … … 14134 14416 diff -Naur ncurses-5.7.orig/ncurses/base/lib_addch.c ncurses-5.7/ncurses/base/lib_addch.c 14135 14417 --- ncurses-5.7.orig/ncurses/base/lib_addch.c 2008-08-16 12:20:04.000000000 -0700 14136 +++ ncurses-5.7/ncurses/base/lib_addch.c 2009-01-08 19:48:12.000000000 -0800 14418 +++ ncurses-5.7/ncurses/base/lib_addch.c 2009-01-18 23:56:41.000000000 -0800 14419 @@ -1,5 +1,5 @@ 14420 /**************************************************************************** 14421 - * Copyright (c) 1998-2006,2008 Free Software Foundation, Inc. * 14422 + * Copyright (c) 1998-2008,2009 Free Software Foundation, Inc. * 14423 * * 14424 * Permission is hereby granted, free of charge, to any person obtaining a * 14425 * copy of this software and associated documentation files (the * 14137 14426 @@ -36,7 +36,7 @@ 14138 14427 #include <curses.priv.h> … … 14140 14429 14141 14430 -MODULE_ID("$Id: lib_addch.c,v 1.113 2008/08/16 19:20:04 tom Exp $") 14142 +MODULE_ID("$Id: lib_addch.c,v 1.11 4 2008/11/29 21:02:10tom Exp $")14431 +MODULE_ID("$Id: lib_addch.c,v 1.115 2009/01/17 20:37:32 tom Exp $") 14143 14432 14144 14433 static const NCURSES_CH_T blankchar = NewChar(BLANK_TEXT); … … 14174 14463 return OK; 14175 14464 } 14465 @@ -327,6 +337,7 @@ 14466 return ERR; 14467 x = win->_curx; 14468 y = win->_cury; 14469 + line = win->_line + y; 14470 } 14471 /* 14472 * Check for cells which are orphaned by adding this character, set 14176 14473 diff -Naur ncurses-5.7.orig/ncurses/base/lib_freeall.c ncurses-5.7/ncurses/base/lib_freeall.c 14177 14474 --- ncurses-5.7.orig/ncurses/base/lib_freeall.c 2008-09-27 06:09:57.000000000 -0700 14178 +++ ncurses-5.7/ncurses/base/lib_freeall.c 2009-01- 08 19:48:14.000000000 -080014475 +++ ncurses-5.7/ncurses/base/lib_freeall.c 2009-01-18 23:56:25.000000000 -0800 14179 14476 @@ -40,7 +40,7 @@ 14180 14477 extern int malloc_errfd; /* FIXME */ … … 14197 14494 diff -Naur ncurses-5.7.orig/ncurses/base/lib_mouse.c ncurses-5.7/ncurses/base/lib_mouse.c 14198 14495 --- ncurses-5.7.orig/ncurses/base/lib_mouse.c 2008-10-18 14:48:55.000000000 -0700 14199 +++ ncurses-5.7/ncurses/base/lib_mouse.c 2009-01- 08 19:48:15.000000000 -080014496 +++ ncurses-5.7/ncurses/base/lib_mouse.c 2009-01-18 23:56:25.000000000 -0800 14200 14497 @@ -79,7 +79,7 @@ 14201 14498 … … 14256 14553 diff -Naur ncurses-5.7.orig/ncurses/curses.priv.h ncurses-5.7/ncurses/curses.priv.h 14257 14554 --- ncurses-5.7.orig/ncurses/curses.priv.h 2008-10-04 14:37:45.000000000 -0700 14258 +++ ncurses-5.7/ncurses/curses.priv.h 2009-01- 08 19:48:09.000000000 -080014555 +++ ncurses-5.7/ncurses/curses.priv.h 2009-01-18 23:56:21.000000000 -0800 14259 14556 @@ -34,7 +34,7 @@ 14260 14557 … … 14277 14574 diff -Naur ncurses-5.7.orig/ncurses/tinfo/entries.c ncurses-5.7/ncurses/tinfo/entries.c 14278 14575 --- ncurses-5.7.orig/ncurses/tinfo/entries.c 2008-09-27 06:11:10.000000000 -0700 14279 +++ ncurses-5.7/ncurses/tinfo/entries.c 2009-01- 08 19:48:15.000000000 -080014576 +++ ncurses-5.7/ncurses/tinfo/entries.c 2009-01-18 23:56:25.000000000 -0800 14280 14577 @@ -37,7 +37,7 @@ 14281 14578 #include <tic.h> … … 14299 14596 diff -Naur ncurses-5.7.orig/ncurses/tinfo/hashed_db.c ncurses-5.7/ncurses/tinfo/hashed_db.c 14300 14597 --- ncurses-5.7.orig/ncurses/tinfo/hashed_db.c 2006-08-19 12:48:38.000000000 -0700 14301 +++ ncurses-5.7/ncurses/tinfo/hashed_db.c 2009-01- 08 19:48:18.000000000 -080014598 +++ ncurses-5.7/ncurses/tinfo/hashed_db.c 2009-01-18 23:56:27.000000000 -0800 14302 14599 @@ -1,5 +1,5 @@ 14303 14600 /**************************************************************************** … … 14405 14702 diff -Naur ncurses-5.7.orig/panel/Makefile.in ncurses-5.7/panel/Makefile.in 14406 14703 --- ncurses-5.7.orig/panel/Makefile.in 2007-04-28 07:56:11.000000000 -0700 14407 +++ ncurses-5.7/panel/Makefile.in 2009-01- 08 19:48:30.000000000 -080014704 +++ ncurses-5.7/panel/Makefile.in 2009-01-18 23:56:35.000000000 -0800 14408 14705 @@ -1,6 +1,6 @@ 14409 14706 -# $Id: Makefile.in,v 1.52 2007/04/28 14:56:11 tom Exp $ … … 14426 14723 diff -Naur ncurses-5.7.orig/progs/Makefile.in ncurses-5.7/progs/Makefile.in 14427 14724 --- ncurses-5.7.orig/progs/Makefile.in 2008-09-07 06:58:55.000000000 -0700 14428 +++ ncurses-5.7/progs/Makefile.in 2009-01- 08 19:48:01.000000000 -080014725 +++ ncurses-5.7/progs/Makefile.in 2009-01-18 23:56:19.000000000 -0800 14429 14726 @@ -1,6 +1,6 @@ 14430 14727 -# $Id: Makefile.in,v 1.79 2008/09/07 13:58:55 tom Exp $ … … 14492 14789 diff -Naur ncurses-5.7.orig/progs/modules ncurses-5.7/progs/modules 14493 14790 --- ncurses-5.7.orig/progs/modules 2006-12-23 16:53:21.000000000 -0800 14494 +++ ncurses-5.7/progs/modules 2009-01- 08 19:48:01.000000000 -080014791 +++ ncurses-5.7/progs/modules 2009-01-18 23:56:19.000000000 -0800 14495 14792 @@ -1,7 +1,7 @@ 14496 14793 -# $Id: modules,v 1.13 2006/12/24 00:53:21 tom Exp $ … … 14513 14810 diff -Naur ncurses-5.7.orig/progs/tabs.c ncurses-5.7/progs/tabs.c 14514 14811 --- ncurses-5.7.orig/progs/tabs.c 1969-12-31 16:00:00.000000000 -0800 14515 +++ ncurses-5.7/progs/tabs.c 2009-01- 08 19:48:09.000000000 -080014812 +++ ncurses-5.7/progs/tabs.c 2009-01-18 23:56:21.000000000 -0800 14516 14813 @@ -0,0 +1,506 @@ 14517 14814 +/**************************************************************************** … … 15023 15320 diff -Naur ncurses-5.7.orig/test/README ncurses-5.7/test/README 15024 15321 --- ncurses-5.7.orig/test/README 2008-10-18 14:02:45.000000000 -0700 15025 +++ ncurses-5.7/test/README 2009-01- 08 19:48:22.000000000 -080015322 +++ ncurses-5.7/test/README 2009-01-18 23:56:30.000000000 -0800 15026 15323 @@ -25,7 +25,7 @@ 15027 15324 -- sale, use or other dealings in this Software without prior written -- … … 15319 15616 diff -Naur ncurses-5.7.orig/test/clip_printw.c ncurses-5.7/test/clip_printw.c 15320 15617 --- ncurses-5.7.orig/test/clip_printw.c 1969-12-31 16:00:00.000000000 -0800 15321 +++ ncurses-5.7/test/clip_printw.c 2009-01- 08 19:48:22.000000000 -080015618 +++ ncurses-5.7/test/clip_printw.c 2009-01-18 23:56:30.000000000 -0800 15322 15619 @@ -0,0 +1,360 @@ 15323 15620 +/**************************************************************************** … … 15683 15980 diff -Naur ncurses-5.7.orig/test/demo_forms.c ncurses-5.7/test/demo_forms.c 15684 15981 --- ncurses-5.7.orig/test/demo_forms.c 2008-10-18 13:38:20.000000000 -0700 15685 +++ ncurses-5.7/test/demo_forms.c 2009-01- 08 19:48:22.000000000 -080015982 +++ ncurses-5.7/test/demo_forms.c 2009-01-18 23:56:30.000000000 -0800 15686 15983 @@ -26,7 +26,7 @@ 15687 15984 * authorization. * … … 15718 16015 diff -Naur ncurses-5.7.orig/test/edit_field.c ncurses-5.7/test/edit_field.c 15719 16016 --- ncurses-5.7.orig/test/edit_field.c 2008-10-18 13:40:20.000000000 -0700 15720 +++ ncurses-5.7/test/edit_field.c 2009-01- 08 19:48:22.000000000 -080016017 +++ ncurses-5.7/test/edit_field.c 2009-01-18 23:56:30.000000000 -0800 15721 16018 @@ -26,7 +26,7 @@ 15722 16019 * authorization. * … … 15741 16038 diff -Naur ncurses-5.7.orig/test/edit_field.h ncurses-5.7/test/edit_field.h 15742 16039 --- ncurses-5.7.orig/test/edit_field.h 2006-06-03 09:38:57.000000000 -0700 15743 +++ ncurses-5.7/test/edit_field.h 2009-01- 08 19:48:22.000000000 -080016040 +++ ncurses-5.7/test/edit_field.h 2009-01-18 23:56:30.000000000 -0800 15744 16041 @@ -1,5 +1,5 @@ 15745 16042 /**************************************************************************** … … 15771 16068 diff -Naur ncurses-5.7.orig/test/filter.c ncurses-5.7/test/filter.c 15772 16069 --- ncurses-5.7.orig/test/filter.c 2006-12-09 08:53:47.000000000 -0800 15773 +++ ncurses-5.7/test/filter.c 2009-01- 08 19:48:15.000000000 -080016070 +++ ncurses-5.7/test/filter.c 2009-01-18 23:56:25.000000000 -0800 15774 16071 @@ -1,5 +1,5 @@ 15775 16072 /**************************************************************************** … … 15843 16140 diff -Naur ncurses-5.7.orig/test/insdelln.c ncurses-5.7/test/insdelln.c 15844 16141 --- ncurses-5.7.orig/test/insdelln.c 1969-12-31 16:00:00.000000000 -0800 15845 +++ ncurses-5.7/test/insdelln.c 2009-01- 08 19:48:22.000000000 -080016142 +++ ncurses-5.7/test/insdelln.c 2009-01-18 23:56:30.000000000 -0800 15846 16143 @@ -0,0 +1,380 @@ 15847 16144 +/**************************************************************************** … … 16227 16524 diff -Naur ncurses-5.7.orig/test/modules ncurses-5.7/test/modules 16228 16525 --- ncurses-5.7.orig/test/modules 2007-08-18 10:57:08.000000000 -0700 16229 +++ ncurses-5.7/test/modules 2009-01- 08 19:48:22.000000000 -080016526 +++ ncurses-5.7/test/modules 2009-01-18 23:56:30.000000000 -0800 16230 16527 @@ -1,4 +1,4 @@ 16231 16528 -# $Id: modules,v 1.36 2007/08/18 17:57:08 tom Exp $ … … 16252 16549 diff -Naur ncurses-5.7.orig/test/ncurses.c ncurses-5.7/test/ncurses.c 16253 16550 --- ncurses-5.7.orig/test/ncurses.c 2008-09-27 07:34:58.000000000 -0700 16254 +++ ncurses-5.7/test/ncurses.c 2009-01- 08 19:48:22.000000000 -080016551 +++ ncurses-5.7/test/ncurses.c 2009-01-18 23:56:30.000000000 -0800 16255 16552 @@ -40,7 +40,7 @@ 16256 16553 Author: Eric S. Raymond <esr@snark.thyrsus.com> 1993 … … 16528 16825 diff -Naur ncurses-5.7.orig/test/programs ncurses-5.7/test/programs 16529 16826 --- ncurses-5.7.orig/test/programs 2008-08-16 14:47:39.000000000 -0700 16530 +++ ncurses-5.7/test/programs 2009-01- 08 19:48:22.000000000 -080016827 +++ ncurses-5.7/test/programs 2009-01-18 23:56:30.000000000 -0800 16531 16828 @@ -1,4 +1,4 @@ 16532 16829 -# $Id: programs,v 1.14 2008/08/16 21:47:39 tom Exp $ … … 16553 16850 diff -Naur ncurses-5.7.orig/test/test.priv.h ncurses-5.7/test/test.priv.h 16554 16851 --- ncurses-5.7.orig/test/test.priv.h 2008-10-04 14:53:41.000000000 -0700 16555 +++ ncurses-5.7/test/test.priv.h 2009-01- 08 19:48:22.000000000 -080016852 +++ ncurses-5.7/test/test.priv.h 2009-01-18 23:56:30.000000000 -0800 16556 16853 @@ -29,7 +29,7 @@ 16557 16854 /****************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.