1 -------------------------------------------------------------------------------
2 -- Copyright (c) 1998-2013,2014 Free Software Foundation, Inc. --
4 -- Permission is hereby granted, free of charge, to any person obtaining a --
5 -- copy of this software and associated documentation files (the --
6 -- "Software"), to deal in the Software without restriction, including --
7 -- without limitation the rights to use, copy, modify, merge, publish, --
8 -- distribute, distribute with modifications, sublicense, and/or sell copies --
9 -- of the Software, and to permit persons to whom the Software is furnished --
10 -- to do so, subject to the following conditions: --
12 -- The above copyright notice and this permission notice shall be included --
13 -- in all copies or substantial portions of the Software. --
15 -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS --
16 -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF --
17 -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN --
18 -- NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, --
19 -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR --
20 -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE --
21 -- USE OR OTHER DEALINGS IN THE SOFTWARE. --
23 -- Except as contained in this notice, the name(s) of the above copyright --
24 -- holders shall not be used in advertising or otherwise to promote the --
25 -- sale, use or other dealings in this Software without prior written --
27 -------------------------------------------------------------------------------
28 -- $Id: NEWS,v 1.2264 2014/08/31 23:12:07 tom Exp $
29 -------------------------------------------------------------------------------
31 This is a log of changes that ncurses has gone through since Zeyd started
32 working with Pavel Curtis' original work, pcurses, in 1992.
34 Changes through 1.9.9e are recorded by Zeyd M Ben-Halim.
35 Changes since 1.9.9e are recorded by Thomas E Dickey.
37 Contributors include those who have provided patches (even small ones), as well
38 as those who provide useful information (bug reports, analyses). Changes with
39 no cited author are the work of Thomas E Dickey (TD).
41 A few contributors are given in this file by their initials.
42 They each account for one percent or more of the changes since 1.9.9e.
43 See the AUTHORS file for the corresponding full names.
45 Changes through 1.9.9e did not credit all contributions;
46 it is not possible to add this information.
49 + modify test/demo_termcap.c and test/demo_terminfo.c to make their
50 options more directly comparable, and add "-i" option to specify
51 a terminal description filename to parse for names to lookup.
54 + fix special case where double-width character overwrites a single-
55 width character in the first column (report by Egmont Koblinger,
59 + fix colors in ncurses 'b' test which did not work after changing
60 it to put the test-strings in subwindows (cf: 20140705).
61 + merge redundant SEE-ALSO sections in form and menu manpages.
64 + modify declarations for user-data pointers in C++ binding to use
65 reinterpret_cast to facilitate converting typed pointers to void*
66 in user's application (patch by Adam Jiang).
67 + regenerated html manpages.
68 + add note regarding cause and effect for TERM in ncurses manpage,
69 having noted clueless verbiage in Terminal.app's "help" file
70 which reverses cause/effect.
71 + remove special fallback definition for NCURSES_ATTR_T, since macros
72 have resolved type-mismatches using casts (cf: 970412).
73 + fixes for win_driver.c:
74 + handle repainting on endwin/refresh combination.
79 + minor portability fixes for MinGW:
80 + ensure WINVER is defined in makefiles rather than using headers
81 + add check for gnatprep "-T" option
82 + work around bug introduced by gcc 4.8.1 in MinGW which breaks
84 http://stackoverflow.com/questions/20877689/gcc-4-8-1-minggw-d-option-does-not-work-as-usual
85 + fix most compiler warnings for Cygwin ncurses-examples.
86 + restore "redundant" -I options in test/Makefile.in, since they are
87 typically needed when building the derived ncurses-examples package
91 + eliminate some redundant -I options used for building libraries, and
92 ensure that ${srcdir} is added to the include-options (prompted by
93 discussion with Paul Gilmartin).
94 + modify configure script to work with Minix3.2
95 + add form library extension O_DYNAMIC_JUSTIFY option which can be
96 used to override the different treatment of justification for static
97 versus dynamic fields (adapted from patch by Leon Winter).
98 + add a null pointer check in test/edit_field.c (report/analysis by
99 Leon Winter, cf: 20130608).
102 + make workarounds for compiling test-programs with NetBSD curses.
103 + improve configure macro CF_ADD_LIBS, to eliminate repeated -l/-L
104 options, from xterm changes.
107 + correct Charable() macro check for A_ALTCHARSET in wide-characters.
108 + build-fix for position-debug code in tty_update.c, to work with or
112 + add w/W toggle to ncurses.c 'B' test, to demonstrate permutation of
113 video-attributes and colors with double-width character strings.
116 + correct check in win_driver.c for saving screen contents, e.g., when
117 NCURSES_CONSOLE2 is set (cf: 20140503).
118 + reorganize b/B menu items in ncurses.c, putting the test-strings into
119 subwindows. This is needed for a planned change to use Unicode
120 fullwidth characters in the test-screens.
121 + correct update to form status for _NEWTOP, broken by fixes for
122 compiler warnings (patch by Leon Winter, cf: 20120616).
125 + change shared-library suffix for AIX 5 and 6 to ".so", avoiding
126 conflict with the static library (report by Ben Lentz).
127 + document RPATH_LIST in INSTALLATION file, as part of workarounds for
128 upgrading an ncurses library using the "--with-shared" option.
129 + modify test/ncurses.c c/C tests to cycle through subsets of the
130 total number of colors, to better illustrate 8/16/88/256-colors by
131 providing directly comparable screens.
132 + add test/dots_curses.c, for comparison with the low-level examples.
135 + fix dereference before null check found by Coverity in tic.c
137 + fix sign-extension bug in read_entry.c which prevented "toe" from
138 reading empty "screen+italics" entry.
139 + modify sgr for screen.xterm-new to support dim capability -TD
140 + add dim capability to nsterm+7 -TD
141 + cancel dim capability for iterm -TD
142 + add dim, invis capabilities to vte-2012 -TD
143 + add sitm/ritm to konsole-base and mlterm3 -TD
146 > fix regression in screen terminfo entries (reports by Christian
147 Ebert, Gabriele Balducci) -TD
148 + revert the change to screen; see notes for why this did not work -TD
149 + cancel sitm/ritm for entries which extend "screen", to work around
150 screen's hardcoded behavior for SGR 3 -TD
153 + separate masking for sgr in vidputs from sitm/ritm, which do not
154 overlap with sgr functionality.
155 + remove unneeded -i option from adacurses-config; put -a in the -I
156 option for consistency (patch by Pascal Pignard).
157 + update xterm-new to patch #305 -TD
158 + change format of test-scripts for Debian Ada95 and ncurses-examples
159 packages to quilted to work around Debian #700177 (cf: 20130907).
160 + build fix for form_driver_w.c as part of ncurses-examples package for
161 older ncurses than 20131207.
162 + add Hello World example to adacurses-config manpage.
163 + remove unused --enable-pc-files option from Ada95/configure.
164 + add --disable-gnat-projects option for testing.
165 + revert changes to Ada95 project-files configuration (cf: 20140524).
166 + corrected usage message in adacurses-config.
169 + fix typo in ncurses manpage for the NCURSES_NO_MAGIC_COOKIE
170 environment variable.
171 + improve discussion of input-echoing in curs_getch.3x
172 + clarify discussion in curs_addch.3x of wrapping.
173 + modify parametrized.h to make fln non-padded.
174 + correct several entries which had termcap-style padding used in
175 terminfo: adm21, aj510, alto-h19, att605-pc, x820 -TD
176 + correct syntax for padding in some entries: dg211, h19 -TD
177 + correct ti924-8 which had confused padding versus octal escapes -TD
178 + correct padding in sbi entry -TD
179 + fix an old bug in the termcap emulation; "%i" was ignored in tparm()
180 because the parameters to be incremented were already on the internal
181 stack (report by Corinna Vinschen).
182 + modify tic's "-c" option to take into account the "-C" option to
183 activate additional checks which compare the results from running
184 tparm() on the terminfo expressions versus the translated termcap
186 + modify tic to allow it to read from FIFOs (report by Matthieu Fronton,
188 > patches by Nicolas Boulenguez:
189 + explicit dereferences to suppress some style warnings.
190 + when c_varargs_to_ada.c includes its header, use double quotes
192 + samples/ncurses2-util.adb: removed unused with clause. The warning
193 was removed by an obsolete pragma.
194 + replaced Unreferenced pragmas with Warnings (Off). The latter,
195 available with older GNATs, needs no configure test. This also
196 replaces 3 untested Unreferenced pragmas.
197 + simplified To_C usage in trace handling. Using two parameters allows
198 some basic formatting, and avoids a warning about security with some
200 + for generated Ada sources, replace many snippets with one pure
202 + removed C_Chtype and its conversions.
203 + removed C_AttrType and its conversions.
204 + removed conversions between int, Item_Option_Set, Menu_Option_Set.
205 + removed int, Field_Option_Set, Item_Option_Set conversions.
206 + removed C_TraceType, Attribute_Option_Set conversions.
207 + replaced C.int with direct use of Eti_Error, now enumerated. As it
208 was used in a case statement, values were tested by the Ada compiler
209 to be consecutive anyway.
210 + src/Makefile.in: remove duplicate stanza
211 + only consider using a project for shared libraries.
212 + style. Silent gnat-4.9 warning about misplaced "then".
213 + generate shared library project to honor ADAFLAGS, LDFLAGS.
216 + cleanup recently introduced compiler warnings for MingW port.
217 + workaround for ${MAKEFLAGS} configure check versus GNU make 4.0,
218 which introduces more than one gratuitous incompatibility.
221 + add vt520ansi terminfo entry (patch by Mike Gran)
222 + further improve MinGW support for the scenario where there is an
223 ANSI-escapes handler such as ansicon running in the console window
224 (patch by Juergen Pfeifer).
227 + add --disable-lib-suffixes option (adapted from patch by Juergen
229 + merge some changes from Juergen Pfeifer's work with MSYS2, to
230 simplify later merging:
231 + use NC_ISATTY() macro for isatty() in library
232 + add _nc_mingw_isatty() and related functions to windows-driver
233 + rename terminal driver entrypoints to simplify grep's
234 + remove a check in the sp-funcs flavor of newterm() which allowed only
235 the first call to newterm() to succeed (report by Thomas Beierlein,
239 + update config.guess, config.sub from
240 http://git.savannah.gnu.org/cgit/config.git
243 + modify configure script:
244 + drop the -no-gcc option from Intel compiler, from lynx changes.
245 + extend the --with-hashed-db configure option to simplify building
246 with different versions of Berkeley database using FreeBSD ports.
247 + improve initialization for MinGW port (Juergen Pfeifer):
248 + enforce Windows-style path-separator if cross-compiling,
249 + add a driver-name method to each of the drivers,
250 + allow the Windows driver name to match "unknown", ignoring case,
251 + lengthen the built-in name for the Windows console driver to
253 + move the comparison of driver-names allowing abbreviation, e.g.,
254 to "#win32con" into the Windows console driver.
257 + add check in tic for mismatch between ccc and initp/initc
258 + cancel ccc in putty-256color and konsole-256color for consistency
259 with the cancelled initc capability (patch by Sven Zuhlsdorf).
260 + add xterm+256setaf building block for various terminals which only
261 get the 256-color feature half-implemented -TD
262 + updated "st" entry (leaving the 0.1.1 version as "simpleterm") to
266 + fix typo in "mlterm" entry (report by Gabriele Balducci) -TD
269 + use types from <stdint.h> in sample build-scripts for chtype, etc.
270 + modify configure script and curses.h.in to allow the types specified
271 using --with-chtype and related options to be defined in <stdint.h>
272 + add terminology entry -TD
273 + add mlterm3 entry, use that as "mlterm" -TD
274 + inherit mlterm-256color from mlterm -TD
277 + modify _nc_New_TopRow_and_CurrentItem() to ensure that the menu's
278 top-row is adjusted as needed to ensure that the current item is
279 on the screen (patch by Johann Klammer).
280 + add wgetdelay() to retrieve _delay member of WINDOW if it happens to
281 be opaque, e.g., in the pthread configuration (prompted by patch by
285 + modify ifdef in read_entry.c to handle the case where
286 NCURSES_USE_DATABASE is not defined (patch by Xin Li).
287 + add cast in form_driver_w() to fix ARM build (patch by Xin Li).
288 + add logic to win_driver.c to save/restore screen contents when not
289 allocating a console-buffer (cf: 20140215).
292 + clarify error-returns from newwin (report by Ruslan Nabioullin).
295 + fix some compiler warnings in win_driver.c
296 + updated notes for wsvt25 based on tack and vttest -TD
297 + add teken entry to show actual properties of FreeBSD's "xterm"
301 + in-progress changes to win_driver.c to implement output without
302 allocating a console-buffer. This uses a pre-existing environment
303 variable NCGDB used by Juergen Pfeifer for debugging (prompted by
304 discussion with Erwin Waterlander regarding Console2, which hangs
305 when reading in an allocated console-buffer).
306 + add -t option to gdc.c, and modify to accept "S" to step through the
308 + regenerate NCURSES-Programming-HOWTO.html to fix some of the broken
309 html emitted by docbook.
312 + modify CF_XOPEN_SOURCE macro to omit followup check to determine if
313 _XOPEN_SOURCE can/should be defined. g++ 4.7.2 built on Solaris 10
314 has some header breakage due to its own predefinition of this symbol
315 (report by Jean-Pierre Flori, Sage #15796).
318 + add/use symbol NCURSES_PAIRS_T like NCURSES_COLOR_T, to illustrate
319 which "short" types are for color pairs and which are color values.
320 + fix build for s390x, by correcting field bit offsets in generated
321 representation clauses when int=32 long=64 and endian=big, or at
322 least on s390x (patch by Nicolas Boulenguez).
323 + minor cleanup change to test/form_driver_w.c (patch by Gaute Hope).
326 + remove unnecessary ifdef's in Ada95/gen/gen.c, which reportedly do
327 not work as is with gcc 4.8 due to fixes using chtype cast made for
328 new compiler warnings by gcc 4.8 in 20130824 (Debian #735753, patch
329 by Nicolas Boulenguez).
332 + apply includesubdir variable which was introduced in 20130805 to
333 gen-pkgconfig.in (Debian #735782).
336 + further improved man2html, used this to fix broken links in html
338 ftp://invisible-island.net/ncurses/patches/man2html
341 + modify configure-script/ifdef's to allow OLD_TTY feature to be
342 suppressed if the type of ospeed is configured using the option
343 --with-ospeed to not be a short. By default, it is a short for
344 termcap-compatibility (adapted from suggestion by Christian
346 + correct a typo in _nc_baudrate() (patch by Christian Weisgerber,
348 + fix a few -Wlogical-op warnings.
349 + updated llib-l* files.
352 + add form_driver_w() entrypoint to wide-character forms library, as
353 well as test program form_driver_w (adapted from patch by Gaute
357 + minor fix for CF_GCC_WARNINGS to special-case options which are not
361 + add special case to configure script to move _XOPEN_SOURCE_EXTENDED
362 definition from CPPFLAGS to CFLAGS if it happens to be needed for
363 Solaris, because g++ errors with that definition (report by
364 Jean-Pierre Flori, Sage #15268).
365 + correct logic in infocmp's -i option which was intended to ignore
366 strings which correspond to function-keys as candidates for piecing
367 together initialization- or reset-strings. The problem dates to
368 1.9.7a, but was overlooked until changes in -Wlogical-op warnings for
369 gcc 4.8 (report by David Binderman).
370 + updated CF_GCC_WARNINGS to documented options for gcc 4.9.0, adding
371 checks for -Wextra, -Wignored-qualifiers and -Wlogical-op
372 + updated CF_GCC_WARNINGS to documented options for gcc 4.9.0, moving
373 checks for -Wextra and -Wdeclaration-after-statement into the macro,
374 and adding checks for -Wignored-qualifiers, -Wlogical-op and
376 + updated CF_CURSES_UNCTRL_H and CF_SHARED_OPTS macros from ongoing
378 + update config.sub from
379 http://git.savannah.gnu.org/cgit/config.git
382 + minor cleanup of terminfo.tail
385 + use TS extension to describe xterm's title-escapes -TD
386 + modify terminator and nsterm-s to use xterm+sl-twm building block -TD
387 + update hurd.ti, add xenl to reflect 2011-03-06 change in
388 http://git.savannah.gnu.org/cgit/hurd/hurd.git/log/console/display.c
390 + simplify pfkey expression in ansi.sys -TD
393 + correct/simplify ifdef's for cur_term versus broken-linker and
394 reentrant options (report by Jean-Pierre Flori, cf: 20090530).
395 + modify release/version combinations in test build-scripts to make
396 them more consistent with other packages.
399 + add nc_mingw.h to installed headers for MinGW port; needed for
400 compiling ncurses-examples.
401 + add rpm-script for testing cross-compile of ncurses-examples.
404 + fix new typo in CF_ADA_INCLUDE_DIRS macro (report by Roumen Petrov).
407 + fix a few compiler warnings in progs and test.
408 + minor fix to package/debian-mingw/rules, do not strip dll's.
409 + minor fixes to configure script for empty $prefix, e.g., when doing
410 cross-compiles to MinGW.
411 + add script for building test-packages of binaries cross-compiled to
415 + minor fixes for ncurses-example package and makefile.
416 + add scripts for test-builds of cross-compiler packages for ncurses6
420 + some build-fixes for ncurses-examples with NetBSD-6.0 curses, though
421 it lacks some common functions such as use_env() which is not yet
423 + build-fix and some compiler warning fixes for ncurses-examples with
425 + fix a possible null-pointer reference in a trace message from newterm.
426 + quiet a few warnings from NetBSD 6.0 namespace pollution by
427 nonstandard popcount() function in standard strings.h header.
428 + ignore g++ 4.2.1 warnings for "-Weffc++" in c++/cursesmain.cc
429 + fix a few overlooked places for --enable-string-hacks option.
432 + fix typo in curs_attr.3x (patch by Sven Joachim, cf: 20130831).
433 + build-fix for --with-shared option for DragonFly and FreeBSD (report
434 by Rong-En Fan, cf: 20130727).
437 + build-fixes for MSYS for two test-programs (patches by Ray Donnelly,
439 + revert change to two of the dpkg format files, to work with dpkg
440 before/after Debian #700177.
441 + fix gcc -Wconversion warning in wattr_get() macro.
442 + add msys and msysdll to known host/configuration types (patch by
444 + modify CF_RPATH_HACK configure macro to not rely upon "-u" option
445 of sort, improving portability.
446 + minor improvements for test-programs from reviewing Solaris port.
447 + update config.guess, config.sub from
448 http://git.savannah.gnu.org/cgit/config.git
451 + modify test/ncurses.c b/B tests to display lines only for the
452 attributes which a given terminal supports, to make room for an
454 + completed ncv table in terminfo.tail; it did not list the wide
455 character codes listed in X/Open Curses issue 7.
456 + add A_ITALIC extension (prompted by discussion with Egmont Koblinger).
459 + fix some gcc 4.8 -Wconversion warnings.
460 + change format of dpkg test-scripts to quilted to work around bug
461 introduced by Debian #700177.
462 + discard cached keyname() values if meta() is changed after a value
463 was cached using (report by Kurban Mallachiev).
466 + add checks in tic to warn about terminals which lack cursor
467 addressing, capabilities or having those, are marked as hard_copy or
469 + use --without-progs in mingw-ncurses rpm.
470 + split out _nc_init_termtype() from alloc_entry.c to use in MinGW
471 port when tic and other programs are not needed.
474 + minor fixes to the --disable-overwrite logic, to ensure that the
475 configured $(includedir) is not cancelled by the mingwxx-filesystem
477 + add --disable-db-install configure option, to simplify building
478 cross-compile support packages.
479 + add mingw-ncurses.spec file, for testing cross-compiles.
482 + improve configure macros from ongoing work on cdk, dialog, xterm:
483 + CF_ADD_LIB_AFTER - fix a problem with -Wl options
484 + CF_RPATH_HACK - add missing result-message
485 + CF_SHARED_OPTS - modify to use $rel_builddir in cygwin and mingw
486 dll symbols (which can be overridden) rather than explicit "../".
487 + CF_SHARED_OPTS - modify NetBSD and DragonFly symbols to use ${CC}
488 rather than ${LD} to improve rpath support.
489 + CF_SHARED_OPTS - add a symbol to denote the temporary files that
490 are created by the macro, to simplify clean-rules.
491 + CF_X_ATHENA - trim extra libraries to work with -Wl,--as-needed
492 + fix a regression in hashed-database support for NetBSD, which uses
493 the key-size differently from other implementations (cf: 20121229).
496 + further improvements for setupterm manpage, clarifying the
497 initialization of cur_term.
500 + improve manpages for initscr and setupterm.
501 + minor compiler-warning fixes
504 + add fallback defs for <inttypes.h> and <stdint.h> (cf: 20120225).
505 + add check for size of wchar_t, use that to suppress a chunk of
506 wcwidth.h in MinGW port.
507 + quiet linker warnings for MinGW cross-compile with dll's using the
508 --enable-auto-import flag.
509 + add ncurses.map rule to ncurses/Makefile to help diagnose symbol
513 + modify the clear program to take into account the E3 extended
514 capability to clear the terminal's scrollback buffer (patch by
515 Miroslav Lichvar, Redhat #815790).
516 + clarify in resizeterm manpage that LINES and COLS are updated.
517 + updated ansi example in terminfo.tail, correct misordered example
519 + fix other doclifter warnings for manpages
520 + remove unnecessary ".ta" in terminfo.tail, add missing ".fi"
521 (patch by Eric Raymond).
524 + minor changes to some configure macros to make them more reusable.
525 + fixes for tabs program (prompted by report by Nick Andrik).
526 + corrected logic in command-line parsing of -a and -c predefined
528 + allow "-0" and "-8" options to be combined with others, e.g.,"-0d".
529 + make warning messages more consistent with the other utilities by
530 not printing the full pathname of the program.
531 + add -V option for consistency with other utilities.
532 + fix off-by-one in columns for tabs program when processing an option
533 such as "-5" (patch by Nick Andrik).
536 + add to test/demo_forms.c examples of using the menu-hooks as well
537 as showing how the menu item user-data can be used to pass a callback
539 + add test/dots_termcap.c
540 + remove setupterm call from test/demo_termcap.c
541 + build-fix if --disable-ext-funcs configure option is used.
542 + modified test/edit_field.c and test/demo_forms.c to move the lengths
543 into a user-data structure, keeping the original string for later
544 expansion to free-format input/out demo.
545 + modified test/demo_forms.c to load data from file.
546 + added note to clarify Terminal.app's non-emulation of the various
547 terminal types listed in the preferences dialog -TD
548 + fix regression in error-reporting in lib_setup.c (Debian #711134,
550 + build-fix for a case where --enable-broken_linker and
551 --enable-reentrant options are combined (report by George R Goffe).
554 + modify mvcur() to distinguish between internal use by the ncurses
555 library, and external callers, preventing it from reading the content
556 of the screen which is only nonblank when curses calls have updated
557 it. This makes test/dots_mvcur.c avoid painting colored cells in
558 the left margin of the display.
559 + minor fix to test/dots_mvcur.c
560 + move configured symbols USE_DATABASE and USE_TERMCAP to term.h as
561 NCURSES_USE_DATABASE and NCURSES_USE_TERMCAP to allow consistent
562 use of these symbols in term_entry.h
565 + corrected ifdefs in test/testcurs.c to allow comparison of mouse
566 interface versus pdcurses (cf: 20130316).
567 + add pow() to configure-check for math library, needed since
568 20121208 for test/hanoi (Debian #708056).
569 + regenerated html manpages.
570 + update doctype used for html documentation.
573 + move nsterm-related entries out of "obsolete" section to more
574 plausible "ansi consoles" -TD
575 + additional cleanup of table-of-contents by reordering -TD
576 + revise fix for check for 8-bit value in _nc_insert_ch(); prior fix
577 prevented inserts when video attributes were attached to the data
578 (cf: 20121215) (Redhat #959534).
581 + fixes for issues found by Coverity:
582 + correct FNKEY() macro in progs/dump_entry.c, allowing kf11-kf63 to
583 display when infocmp's -R option is used for HP or AIX subsets.
584 + fix dead-code issue with test/movewindow.c
585 + improve limited-checking in _nc_read_termtype().
588 + fix clang 3.2 warning in progs/dump_entry.c
589 + drop AC_TYPE_SIGNAL check; ncurses relies on c89 and later.
592 + add MinGW to cases where ncurses installs by default into /usr
593 (prompted by discussion with Daniel Silva Ferreira).
594 + add -D option to infocmp's usage-message (patch by Miroslav Lichvar).
595 + add a missing 'int' type for main function in configure check for
596 type of bool variable, to work with clang 3.2 (report by Dmitri
598 + improve configure check for static_cast, to work with clang 3.2
599 (report by Dmitri Gribenko).
600 + re-order rule for demo.o and macros defining header dependencies in
601 c++/Makefile.in to accommodate gmake (report by Dmitri Gribenko).
604 + improve parameter checking in copywin().
605 + modify configure script to work around OS X's "libtool" program, to
606 choose glibtool instead. At the same time, chance the autoconf macro
607 to look for a "tool" rather than a "prog", to help with potential use
609 + separate the rpath usage for c++ library from demo program
611 + update/correct header-dependencies in c++ makefile (report by Werner
613 + add --with-cxx-shared to dpkg-script, as done for rpm-script.
616 + build-fix for libtool configuration (reports by Daniel Silva Ferreira
620 + build-fix for OS X, to handle changes for --with-cxx-shared feature
621 (report by Christian Ebert).
622 + change initialization for vt220, similar entries for consistency
623 with cursor-key strings (NetBSD #47674) -TD
624 + further improvements to linux-16color (Benjamin Sittler)
627 + additional fix for tic.c, to allocate missing buffer space.
628 + eliminate configure-script warnings for gen-pkgconfig.in
629 + correct typo in sgr string for sun-color,
630 add bold for consistency with sgr,
631 change smso for consistency with sgr -TD
632 + correct typo in sgr string for terminator -TD
633 + add blink to the attributes masked by ncv in linux-16color (report
635 + improve warning message from post-load checking for missing "%?"
636 operator by tic/infocmp by showing the entry name and capability.
637 + minor formatting improvement to tic/infocmp -f option to ensure
638 line split after "%;".
639 + amend scripting for --with-cxx-shared option to handle the debug
640 library "libncurses++_g.a" (report by Sven Joachim).
643 + amend change to toe.c for reading from /dev/zero, to ensure that
644 there is a buffer for the temporary filename (cf: 20120324).
645 + regenerated html manpages.
646 + fix typo in terminfo.head (report by Sven Joachim, cf: 20130302).
647 + updated some autoconf macros:
648 + CF_ACVERSION_CHECK, from byacc 1.9 20130304
649 + CF_INTEL_COMPILER, CF_XOPEN_SOURCE from luit 2.0-20130217
650 + add configure option --with-cxx-shared to permit building
651 libncurses++ as a shared library when using g++, e.g., the same
652 limitations as libtool but better integrated with the usual build
653 configuration (Redhat #911540).
654 + modify MKkey_defs.sh to filter out build-path which was unnecessarily
655 shown in curses.h (Debian #689131).
658 + add section to terminfo manpage discussing user-defined capabilities.
659 + update manpage description of NCURSES_NO_SETBUF, explaining why it
661 + add a check in waddch_nosync() to ensure that tab characters are
662 treated as control characters; some broken locales claim they are
664 + add some traces to the Windows console driver.
665 + initialize a temporary array in _nc_mbtowc, needed for some cases
666 of raw input in MinGW port.
669 + correct ifdef on change to lib_twait.c (report by Werner Fink).
670 + update config.guess, config.sub
673 + modify test/testcurs.c to work with mouse for ncurses as it does for
675 + modify test/knight.c to work with mouse for pdcurses as it does for
677 + modify internal recursion in wgetch() which handles cooked mode to
678 check if the call to wgetnstr() returned an error. This can happen
679 when both nocbreak() and nodelay() are set, for instance (report by
680 Nils Christopher Brause) (cf: 960418).
681 + fixes for issues found by Coverity:
682 + add a check for valid position in ClearToEOS()
683 + fix in lib_twait.c when --enable-wgetch-events is used, pointer
685 + improve a limit-check in make_hash.c
686 + fix a memory leak in hashed_db.c
689 + modify test/configure script to make it simpler to override names
690 of curses-related libraries, to help with linking with pdcurses in
692 + if the --with-terminfo-dirs configure option is not used, there is
693 no corresponding compiled-in value for that. Fill in "no default
694 value" for that part of the manpage substitution.
697 + correct initialization in knight.c which let it occasionally make
698 an incorrect move (cf: 20001028).
699 + improve documentation of the terminfo/termcap search path.
702 + further fixes to mvcur to pass callback function (cf: 20130112),
703 needed to make test/dots_mvcur work.
704 + reduce calls to SetConsoleActiveScreenBuffer in win_driver.c, to
706 + modify configure script to omit "+b" from linker options for very
707 old HP-UX systems (report by Dennis Grevenstein)
708 + add HP-UX workaround for missing EILSEQ on old HP-UX systems (patch
709 by Dennis Grevenstein).
710 + restore memmove/strdup support for antique systems (request by
712 + change %l behavior in tparm to push the string length onto the stack
713 rather than saving the formatted length into the output buffer
714 (report by Roy Marples, cf: 980620).
717 + fixes for issues found by Coverity:
718 + fix memory leak in safe_sprintf.c
719 + add check for return-value in tty_update.c
720 + correct initialization for -s option in test/view.c
721 + add check for numeric overflow in lib_instr.c
722 + improve error-checking in copywin
723 + add advice in infocmp manpage for termcap users (Debian #698469).
724 + add "-y" option to test/demo_termcap and test/demo_terminfo to
725 demonstrate behavior with/without extended capabilities.
726 + updated termcap manpage to document legacy termcap behavior for
727 matching capability names.
728 + modify name-comparison for tgetstr, etc., to accommodate legacy
729 applications as well as to improve compatbility with BSD 4.2
730 termcap implementations (Debian #698299) (cf: 980725).
733 + correct prototype in manpage for vid_puts.
734 + drop ncurses/tty/tty_display.h, ncurses/tty/tty_input.h, since they
735 are unused in the current driver model.
736 + modify mvcur to use stdout except when called within the ncurses
738 + modify vidattr and vid_attr to use stdout as documented in manpage.
739 + amend changes made to buffering in 20120825 so that the low-level
740 putp() call uses stdout rather than ncurses' internal buffering.
741 The putp_sp() call does the same, for consistency (Redhat #892674).
744 + add "-s" option to test/view.c to allow it to start in single-step
745 mode, reducing size of trace files when it is used for debugging
747 + revert part of 20121222 change to tinfo_driver.c
748 + add experimental logic in win_driver.c to improve optimization of
749 screen updates. This does not yet work with double-width characters,
750 so it is ifdef'd out for the moment (prompted by report by Erwin
751 Waterlander regarding screen flicker).
754 + fix coverity warnings regarding copying into fixed-size buffers.
755 + add throw-declarations in the c++ binding per Coverity warning.
756 + minor changes to new-items for consistent reference to bug-report
760 + add *.dSYM directories to clean-rule in ncurses directory makefile,
762 + add a configure check for gcc option -no-cpp-precomp, which is not
763 available in all Mac OS X configurations (report by Andras Salamon,
765 + improve 20021221 workaround for broken acs, handling a case where
766 that ACS_xxx character is not in the acsc string but there is a known
767 wide-character which can be used.
770 + fix several warnings from clang 3.1 --analyze, includes correcting
771 a null-pointer check in _nc_mvcur_resume.
772 + correct display of double-width characters with MinGW port (report
773 by Erwin Waterlander).
774 + replace MinGW's wcrtomb(), fixing a problem with _nc_viscbuf
775 > fixes based on Coverity report:
776 + correct coloring in test/bs.c
777 + correct check for 8-bit value in _nc_insert_ch().
778 + remove dead code in progs/tset.c, test/linedata.h
779 + add null-pointer checks in lib_tracemse.c, panel.priv.h, and some
783 + modify test/knight.c to show the number of choices possible for
784 each position in automove option, e.g., to allow user to follow
785 Warnsdorff's rule to solve the puzzle.
786 + modify test/hanoi.c to show the minimum number of moves possible for
787 the given number of tiles (prompted by patch by Lucas Gioia).
788 > fixes based on Coverity report:
789 + remove a few redundant checks.
790 + correct logic in test/bs.c, when randomly placing a specific type of
792 + check return value from remove/unlink in tic.
793 + check return value from sscanf in test/ncurses.c
794 + fix a null dereference in c++/cursesw.cc
795 + fix two instances of uninitialized variables when configuring for the
797 + correct scope of variable used in SetSafeOutcWrapper macro.
798 + set umask when calling mkstemp in tic.
799 + initialize wbkgrndset() temporary variable when extended-colors are
803 + also replace MinGW's wctomb(), fixing a problem with setcchar().
804 + modify test/view.c to load UTF-8 when built with MinGW by using
805 regular win32 API because the MinGW functions mblen() and mbtowc()
809 + correct order of color initialization versus display in some of the
810 test-programs, e.g., test_addstr.c
811 > fixes based on Coverity report:
812 + delete windows on exit from some of the test-programs.
815 > fixes based on Coverity report:
816 + add missing braces around FreeAndNull in two places.
817 + various fixes in test/ncurses.c
818 + improve limit-checks in tinfo/make_hash.c, tinfo/read_entry.c
819 + correct malloc size in progs/infocmp.c
820 + guard against negative array indices in test/knight.c
821 + fix off-by-one limit check in test/color_name.h
822 + add null-pointer check in progs/tabs.c, test/bs.c, test/demo_forms.c,
824 + fix memory-leak in tinfo/lib_setup.c, progs/toe.c,
825 test/clip_printw.c, test/demo_menus.c
826 + delete unused windows in test/chgat.c, test/clip_printw.c,
827 test/insdelln.c, test/newdemo.c on error-return.
830 + modify configure macro CF_INCLUDE_DIRS to put $CPPFLAGS after the
831 local -I include options in case someone has set conflicting -I
832 options in $CPPFLAGS (prompted by patch for ncurses/Makefile.in by
834 + modify the ncurses*-config scripts to eliminate relative paths from
835 the RPATH_LIST variable, e.g., "../lib" as used in installing shared
836 libraries or executables.
839 + realign these related pages:
844 and fix a long-ago error in curs_addstr.3x which said that a -1
845 length parameter would only write as much as fit onto one line
846 (report by Reuben Thomas).
847 + remove obsolete fallback _nc_memmove() for memmove()/bcopy().
848 + remove obsolete fallback _nc_strdup() for strdup().
849 + cancel any debug-rpm in package/ncurses.spec
850 + reviewed vte-2012, reverted most of the change since it was incorrect
851 based on testing with tack -TD
852 + un-cancel the initc in vte-256color, since this was implemented
853 starting with version 0.20 in 2009 -TD
856 + improve malloc/realloc checking (prompted by discussion in Redhat
858 + add ncurses test-program as "ncurses6" to the rpm- and dpkg-scripts.
859 + updated configure macros CF_GCC_VERSION and CF_WITH_PATHLIST. The
860 first corrects pattern used for Mac OS X's customization of gcc.
863 + fix change to _nc_scroll_optimize(), which incorrectly freed memory
867 + add vte-2012, gnome-2012, making these the defaults for vte/gnome
868 (patch by Christian Persch).
871 + improve CF_GCC_VERSION to work around Debian's customization of gcc
873 + improve configure macros as done in byacc:
874 + drop 2.13 compatibility; use 2.52.xxxx version only since EMX port
875 has used that for a while.
876 + add 3rd parameter to AC_DEFINE's to allow autoheader to run, i.e.,
877 for experimental use.
878 + remove unused configure macros.
879 + modify configure script and makefiles to quiet new autoconf warning
880 for LIBS_TO_MAKE variable.
881 + modify configure script to show $PATH_SEPARATOR variable.
882 + update config.guess, config.sub
885 + modify setupterm to set its copy of TERM to "unknown" if configured
886 for the terminal driver and TERM was null or empty.
887 + modify treatment of TERM variable for MinGW port to allow explicit
888 use of the windows console driver by checking if $TERM is set to
889 "#win32con" or an abbreviation of that.
890 + undo recent change to fallback definition of vsscanf() to build with
891 older Solaris compilers (cf: 20120728).
894 + add test-screens to test/ncurses to show 256-characters at a time,
895 to help with MinGW port.
898 + simplify varargs logic in lib_printw.c; va_copy is no longer needed
900 + modifications for MinGW port to make wide-character display usable.
903 + regenerate configure script (report by Sven Joachim, cf: 20120901).
906 + add a null-pointer check in _nc_flush (cf: 20120825).
907 + fix a case in _nc_scroll_optimize() where the _oldnums_list array
908 might not be allocated.
909 + improve comparisons in configure.in for unset shell variables.
912 + increase size of ncurses' output-buffer, in case of very small
913 initial screen-sizes.
914 + fix evaluation of TERMINFO and TERMINFO_DIRS default values as needed
915 after changes to use --datarootdir (reports by Gabriele Balducci,
919 + change output buffering scheme, using buffer maintained by ncurses
920 rather than stdio, to avoid problems with SIGTSTP handling (report
924 + update autoconf patch to 2.52.20120811, adding --datarootdir
925 (prompted by discussion with Erwin Waterlander).
926 + improve description of --enable-reentrant option in README and the
928 + add nsterm-256color, make this the default nsterm -TD
929 + remove bw from nsterm-bce, per testing with tack -TD
932 + update test/configure, adding check for tinfo library.
933 + improve limit-checks for the getch fifo (report by Werner Fink).
934 + fix a remaining mismatch between $with_echo and the symbols updated
935 for CF_DISABLE_ECHO affecting parameters for mk-2nd.awk (report by
936 Sven Joachim, cf: 20120317).
937 + modify followup check for pkg-config's library directory in the
938 --enable-pc-files option to validate syntax (report by Sven Joachim,
942 + correct path for ncurses_mingw.h in include/headers, in case build
943 is done outside source-tree (patch by Roumen Petrov).
944 + modify some older xterm entries to align with xterm source -TD
945 + separate "xterm-old" alias from "xterm-r6" -TD
946 + add E3 extended capability to xterm-basic and putty -TD
947 + parenthesize parameters of other macros in curses.h -TD
948 + parenthesize parameter of COLOR_PAIR and PAIR_NUMBER in curses.h
949 in case it happens to be a comma-expression, etc. (patch by Nick
953 + improved form_request_by_name() and menu_request_by_name().
954 + eliminate two fixed-size buffers in toe.c
955 + extend use_tioctl() to have expected behavior when use_env(FALSE) and
956 use_tioctl(TRUE) are called.
957 + modify ncurses test-program, adding -E and -T options to demonstrate
958 use_env() versus use_tioctl().
961 + add use_tioctl() function (adapted from patch by Werner Fink,
965 + add ncurses_mingw.h to installed headers (prompted by patch by
967 + clarify return-codes from wgetch() in response to SIGWINCH (prompted
969 + modify resizeterm() to always push a KEY_RESIZE onto the fifo, even
970 if screensize is unchanged. Modify _nc_update_screensize() to push a
971 KEY_RESIZE if there was a SIGWINCH, even if it does not call
972 resizeterm(). These changes eliminate the case where a SIGWINCH is
973 received, but ERR returned from wgetch or wgetnstr because the screen
974 dimensions did not change (Novell #769788).
977 + add --enable-interop to sample package scripts (suggested by Juergen
979 + update CF_PATH_SYNTAX macro, from mawk changes.
980 + modify mk-0th.awk to allow for generating llib-ltic, etc., though
981 some work is needed on cproto to work with lib_gen.c to update
983 + remove redundant getenv() cal in database-iterator leftover from
984 cleanup in 20120622 changes (report by Sven Joachim).
987 + add -d, -e and -q options to test/demo_terminfo and test/demo_termcap
988 + fix caching of environment variables in database-iterator (patch by
989 Philippe Troin, Redhat #831366).
992 + add configure check to distinguish clang from gcc to eliminate
993 warnings about unused command-line parameters when compiler warnings
995 + improve behavior when updating terminfo entries which are hardlinked
996 by allowing for the possibility that an alias has been repurposed to
998 + fix some strict compiler warnings based on package scripts.
999 + further fixes for configure check for working poll (Debian #676461).
1002 + fix an uninitialized variable in -c/-n logic for infocmp changes
1004 + corrected fix for building c++ binding with clang 3.0 (report/patch
1005 by Richard Yao, Gentoo #417613, cf: 20110409)
1006 + correct configure check for working poll, fixing the case where stdin
1007 is redirected, e.g., in rpm/dpkg builds (Debian #676461).
1008 + add rpm- and dpkg-scripts, to test those build-environments.
1009 The resulting packages are used only for testing.
1012 + add kdch1 aka "Remove" to vt220 and vt220-8 entries -TD
1013 + add kdch1, etc., to qvt108 -TD
1014 + add dl1/il1 to some entries based on dl/il values -TD
1015 + add dl to simpleterm -TD
1016 + add consistency-checks in tic for insert-line vs delete-line
1017 controls, and insert/delete-char keys
1018 + correct no-leaks logic in infocmp when doing comparisons, fixing
1019 duplicate free of entries given via the command-line, and freeing
1020 entries loaded from the last-but-one of files specified on the
1022 + add kdch1 to wsvt25 entry from NetBSD CVS (reported by David Lord,
1023 analysis by Martin Husemann).
1024 + add cnorm/civis to wsvt25 entry from NetBSD CVS (report/analysis by
1025 Onno van der Linden).
1028 + extend -c and -n options of infocmp to allow comparing more than two
1030 + correct check in infocmp for number of terminal names when more than
1032 + correct typo in curs_threads.3x (report by Yanhui Shen on
1033 freebsd-hackers mailing list).
1036 + corrected 'op' for bterm (report by Samuel Thibault) -TD
1037 + modify test/background.c to demonstrate a background character
1038 holding a colored ACS_HLINE. The behavior differs from SVr4 due to
1039 the thick- and double-line extension (cf: 20091003).
1040 + modify handling of acs characters in PutAttrChar to avoid mapping an
1041 unmapped character to a space with A_ALTCHARSET set.
1042 + rewrite vt520 entry based on vt420 -TD
1045 + remove p6 (bold) from opus3n1+ for consistency -TD
1046 + remove acs stuff from env230 per clues in Ingres termcap -TD
1047 + modify env230 sgr/sgr0 to match other capabilities -TD
1048 + modify smacs/rmacs in bq300-8 to match sgr/sgr0 -TD
1049 + make sgr for dku7202 agree with other caps -TD
1050 + make sgr for ibmpc agree with other caps -TD
1051 + make sgr for tek4107 agree with other caps -TD
1052 + make sgr for ndr9500 agree with other caps -TD
1053 + make sgr for sco-ansi agree with other caps -TD
1054 + make sgr for d410 agree with other caps -TD
1055 + make sgr for d210 agree with other caps -TD
1056 + make sgr for d470c, d470c-7b agree with other caps -TD
1057 + remove redundant AC_DEFINE for NDEBUG versus Makefile definition.
1058 + fix a back-link in _nc_delink_entry(), which is needed if ncurses is
1059 configured with --enable-termcap and --disable-getcap.
1062 + fix some inconsistencies between vt320/vt420, e.g., cnorm/civis -TD
1063 + add eslok flag to dec+sl -TD
1064 + dec+sl applies to vt320 and up -TD
1065 + drop wsl width from xterm+sl -TD
1066 + reuse xterm+sl in putty and nsca-m -TD
1067 + add ansi+tabs to vt520 -TD
1068 + add ansi+enq to vt220-vt520 -TD
1069 + fix a compiler warning in example in ncurses-intro.doc (Paul Waring).
1070 + added paragraph in keyname manpage telling how extended capabilities
1071 are interpreted as key definitions.
1072 + modify tic's check of conflicting key definitions to include extended
1073 capability strings in addition to the existing check on predefined
1077 + improve cleanup of temporary files in tic using atexit().
1078 + add msgr to vt420, similar DEC vtXXX entries -TD
1079 + add several missing vt420 capabilities from vt220 -TD
1080 + factor out ansi+pp from several entries -TD
1081 + change xterm+sl and xterm+sl-twm to include only the status-line
1082 capabilities and not "use=xterm", making them more generally useful
1083 as building-blocks -TD
1084 + add dec+sl building block, as example -TD
1087 + add XT to some terminfo entries to improve usefulness for other
1088 applications than screen, which would like to pretend that xterm's
1089 title is a status-line. -TD
1090 + change use-clauses in ansi-mtabs, hp2626, and hp2622 based on review
1091 of ordering and overrides -TD
1092 + add consistency check in tic for screen's "XT" capability.
1093 + add section in terminfo.src summarizing the user-defined capabilities
1094 used in that file -TD
1097 + fix an inconsistency between tic/infocmp "-x" option; tic omits all
1098 non-standard capabilities, while infocmp was ignoring only the user
1099 definable capabilities.
1100 + improve special case in tic parsing of description to allow it to be
1101 followed by terminfo capabilities. Previously the description had to
1102 be the last field on an input line to allow tic to distinguish
1103 between termcap and terminfo format while still allowing commas to be
1104 embedded in the description.
1105 + correct variable name in gen_edit.sh which broke configurability of
1106 the --with-xterm-kbs option.
1107 + revert 2011-07-16 change to "linux" alias, return to "linux2.2" -TD
1108 + further amend 20110910 change, providing for configure-script
1109 override of the "linux" terminfo entry to install and changing the
1110 default for that to "linux2.2" (Debian #665959).
1113 + update Ada95/configure to use CF_DISABLE_ECHO (cf: 20120317).
1114 + correct order of use-clauses in st-256color -TD
1115 + modify configure script to look for gnatgcc if the Ada95 binding
1116 is built, in preference to the default gcc/cc (suggested by
1117 Nicolas Boulenguez).
1118 + modify configure script to ensure that the same -On option used for
1119 the C compiler in CFLAGS is used for ADAFLAGS rather than simply
1120 using "-O3" (suggested by Nicolas Boulenguez)
1123 + amend an old fix so that next_char() exits properly for empty files,
1124 e.g., from reading /dev/null (cf: 20080804).
1125 + modify tic so that it can read from the standard input, or from
1126 a character device. Because tic uses seek's, this requires writing
1127 the data to a temporary file first (prompted by remark by Sven
1128 Joachim) (cf: 20000923).
1131 + correct a check made in lib_napms.c, so that terminfo applications
1132 can again use napms() (cf: 20110604).
1133 + add a note in tic.h regarding required casts for ABSENT_BOOLEAN
1135 + correct scripting for --disable-echo option in test/configure.
1136 + amend check for missing c++ compiler to work when no error is
1137 reported, and no variables set (cf: 20021206).
1138 + add/use configure macro CF_DISABLE_ECHO.
1141 + fix some strict compiler warnings for abi6 and 64-bits.
1142 + use begin_va_copy/end_va_copy macros in lib_printw.c (cf: 20120303).
1143 + improve a limit-check in infocmp.c (Werner Fink):
1146 + minor tidying of terminfo.tail, clarify reason for limitation
1147 regarding mapping of \0 to \200
1148 + minor improvement to _nc_copy_termtype(), using memcpy to replace
1150 + fix no-leaks checking in test/demo_termcap.c to account for multiple
1151 calls to setupterm().
1152 + modified the libgpm change to show previous load as a problem in the
1154 > merge some patches from OpenSUSE rpm (Werner Fink):
1155 + ncurses-5.7-printw.dif, fixes for varargs handling in lib_printw.c
1156 + ncurses-5.7-gpm.dif, do not dlopen libgpm if already loaded by
1158 + ncurses-5.6-fallback.dif, do not free arrays and strings from static
1162 + fix breakage in tic/infocmp from 20120225 (report by Werner Fink).
1165 + modify configure script to allow creating dll's for MinGW when
1167 + add --enable-string-hacks option to control whether strlcat and
1168 strlcpy may be used. The same issue applies to OpenBSD's warnings
1169 about snprintf, noting that this function is weakly standardized.
1170 + add configure checks for strlcat, strlcpy and snprintf, to help
1171 reduce bogus warnings with OpenBSD builds.
1172 + build-fix for OpenBSD 4.9 to supply consistent intptr_t declaration
1174 + update config.guess, config.sub
1177 + correct CF_ETIP_DEFINES configure macro, making it exit properly on
1178 the first success (patch by Pierre Labastie).
1179 + improve configure macro CF_MKSTEMP by moving existence-check for
1180 mkstemp out of the AC_TRY_RUN, to help with cross-compiles.
1181 + improve configure macro CF_FUNC_POLL from luit changes to detect
1182 broken implementations, e.g., with Mac OS X.
1183 + add configure option --with-tparm-arg
1184 + build-fix for MinGW cross-compiling, so that make_hash does not
1185 depend on TTY definition (cf: 20111008).
1188 + make sgr for xterm-pcolor agree with other caps -TD
1189 + make sgr for att5425 agree with other caps -TD
1190 + make sgr for att630 agree with other caps -TD
1191 + make sgr for linux entries agree with other caps -TD
1192 + make sgr for tvi9065 agree with other caps -TD
1193 + make sgr for ncr260vt200an agree with other caps -TD
1194 + make sgr for ncr160vt100pp agree with other caps -TD
1195 + make sgr for ncr260vt300an agree with other caps -TD
1196 + make sgr for aaa-60-dec-rv, aaa+dec agree with other caps -TD
1197 + make sgr for cygwin, cygwinDBG agree with other caps -TD
1198 + add configure option --with-xterm-kbs to simplify configuration for
1199 Linux versus most other systems.
1202 + improved tic -D option, avoid making target directory and provide
1206 + add mach-gnu (Debian #614316, patch by Samuel Thibault)
1207 + add mach-gnu-color, tweaks to mach-gnu terminfo -TD
1208 + make sgr for sun-color agree with smso -TD
1209 + make sgr for prism9 agree with other caps -TD
1210 + make sgr for icl6404 agree with other caps -TD
1211 + make sgr for ofcons agree with other caps -TD
1212 + make sgr for att5410v1, att4415, att620 agree with other caps -TD
1213 + make sgr for aaa-unk, aaa-rv agree with other caps -TD
1214 + make sgr for avt-ns agree with other caps -TD
1215 + amend fix intended to separate fixups for acsc to allow "tic -cv" to
1216 give verbose warnings (cf: 20110730).
1217 + modify misc/gen-edit.sh to make the location of the tabset directory
1218 consistent with misc/Makefile.in, i.e., using ${datadir}/tabset
1219 (Debian #653435, patch by Sven Joachim).
1222 + add --with-lib-prefix option to allow configuring for old/new flavors
1224 + modify check for gnat version to allow for year, as used in FreeBSD
1226 + modify check_existence() in db_iterator.c to simply check if the
1227 path is a directory or file, according to the need. Checking for
1228 directory size also gives no usable result with OS/2 (cf: 20120107).
1229 + support OS/2 kLIBC (patch by KO Myung-Han).
1232 + several improvements to test/movewindow.c (prompted by discussion on
1234 + modify movement commands to make them continuous
1235 + rewrote the test for mvderwin
1236 + rewrote the test for recursive mvwin
1237 + split-out reusable CF_WITH_NCURSES_ETC macro in test/configure.in
1238 + updated configure macro CF_XOPEN_SOURCE, build-fixes for Mac OS X
1240 + regenerated html manpages.
1243 + various improvments for MinGW (Juergen Pfeifer):
1244 + modify stat() calls to ignore the st_size member
1245 + drop mk-dlls.sh script.
1246 + change recommended regular expression library.
1247 + modify rain.c to allow for threaded configuraton.
1248 + modify tset.c to allow for case when size-change logic is not used.
1251 + modify toe's report when -a and -s options are combined, to add
1252 a column showing which entries belong to a given database.
1253 + add -s option to toe, to sort its output.
1254 + modify progs/toe.c, simplifying use of db-iterator results to use
1255 caching improvements from 20111001 and 20111126.
1256 + correct generation of pc-files when ticlib or termlib options are
1257 given to rename the corresponding tic- or tinfo-libraries (report
1261 + document a portability issue with tput, i.e., that scripts which work
1262 with ncurses may fail in other implementations that do no parameter
1264 + add putty-sco entry -TD
1267 + review/fix places in manpages where --program-prefix configure option
1269 + add -D option to infocmp, to show the database locations that it
1271 + fix build for the special case where term-driver, ticlib and termlib
1272 are all enabled. The terminal driver depends on a few features in
1273 the base ncurses library, so tic's dependencies include both ncurses
1275 + fix build work for term-driver when --enable-wgetch-events option is
1277 + use <stdint.h> types to fix some questionable casts to void*.
1280 + modify configure script to check if thread library provides
1281 pthread_mutexattr_settype(), e.g., not provided by Solaris 2.6
1282 + modify configure script to suppress check to define _XOPEN_SOURCE
1283 for IRIX64, since its header files have a conflict versus
1285 + modify configure script to add ".pc" files for tic- and
1286 tinfo-libraries, which were omitted in recent change (cf: 20111126).
1287 + fix inconsistent checks on $PKG_CONFIG variable in configure script.
1290 + modify configure-check for etip.h dependencies, supplying a temporary
1291 copy of ncurses_dll.h since it is a generated file (prompted by
1293 + modify CF_CPP_PARAM_INIT "main" function to work with current C++.
1296 + correct database iterator's check for duplicate entries
1298 + modify database iterator to ignore $TERMCAP when it is not an
1300 + add -D option to tic, to show the database locations that it could
1302 + improve description of database locations in tic manpage.
1303 + modify the configure script to generate a list of the ".pc" files to
1304 generate, rather than deriving the list from the libraries which have
1305 been built (patch by Mike Frysinger).
1306 + use AC_CHECK_TOOLS in preference to AC_PATH_PROGS when searching for
1307 ncurses*-config, e.g., in Ada95/configure and test/configure (adapted
1308 from patch by Mike Frysinger).
1311 + remove obsolete/conflicting fallback definition for _POSIX_SOURCE
1312 from curses.priv.h, fixing a regression with IRIX64 and Tru64
1314 + modify _nc_tic_dir() to ensure that its return-value is nonnull,
1315 i.e., the database iterator was not initialized. This case is needed
1316 to when tic is translating to termcap, rather than loading the
1317 database (cf: 20111001).
1320 + add pccon entries for OpenBSD console (Alexei Malinin).
1321 + build-fix for OpenBSD 4.9 with gcc 4.2.1, setting _XOPEN_SOURCE to
1322 600 to work around inconsistent ifdef'ing of wcstof between C and
1324 + modify capconvert script to accept more than exact match on "xterm",
1325 e.g., the "xterm-*" variants, to exclude from the conversion (patch
1327 + add -lc_r as alternative for -lpthread, allows build of threaded code
1328 in older FreeBSD machines.
1329 + build-fix for MirBSD, which fails when either _XOPEN_SOURCE or
1330 _POSIX_SOURCE are defined.
1331 + fix a typo misc/Makefile.in, used in uninstalling pc-files.
1334 + modify make_db_path() to allow creating "terminfo.db" in the same
1335 directory as an existing "terminfo" directory. This fixes a case
1336 where switching between hashed/filesystem databases would cause the
1337 new hashed database to be installed in the next best location -
1338 root's home directory.
1339 + add variable cf_cv_prog_gnat_correct to those passed to
1340 config.status, fixing a problem with Ada95 builds (cf: 20111022).
1341 + change feature test from _XPG5 to _XOPEN_SOURCE in two places, to
1342 accommodate broken implementations for _XPG6.
1343 + eliminate usage of NULL symbol from etip.h, to reduce header
1345 + add configure check to decide when to add _XOPEN_SOURCE define to
1346 compiler options, i.e., for Solaris 10 and later (cf: 20100403).
1347 This is a workaround for gcc 4.6, which fails to build the c++
1348 binding if that symbol is defined by the application, due to
1349 incorrectly combining the corresponding feature test macros
1350 (report by Peter Kruse).
1353 + correct logic for discarding mouse events, retaining the partial
1354 events used to build up click, double-click, etc, until needed
1356 + fix configure script to avoid creating unused Ada95 makefile when
1358 + cleanup width-related gcc 3.4.3 warnings for 64-bit platform, for the
1359 internal functions of libncurses. The external interface of courses
1360 uses bool, which still produces these warnings.
1363 + improve description of --disable-tic-depends option to make it
1364 clear that it may be useful whether or not the --with-termlib
1365 option is also given (report by Sven Joachim).
1366 + amend termcap equivalent for set_pglen_inch to use the X/Open
1367 "YI" rather than the obsolete Solaris 2.5 "sL" (cf: 990109).
1368 + improve manpage for tgetent differences from termcap library.
1371 + moved static data from db_iterator.c to lib_data.c
1372 + modify db_iterator.c for memory-leak checking, fix one leak.
1373 + modify misc/gen-pkgconfig.in to use Requires.private for the parts
1374 of ncurses rather than Requires, as well as Libs.private for the
1375 other library dependencies (prompted by Debian #644728).
1378 + modify tic "-K" option to only set the strict-flag rather than force
1379 source-output. That allows the same flag to control the parser for
1380 input and output of termcap source.
1381 + modify _nc_getent() to ignore backslash at the end of a comment line,
1382 making it consistent with ncurses' parser.
1383 + restore a special-case check for directory needed to make termcap
1384 text files load as if they were databases (cf: 20110924).
1385 + modify tic's resolution/collision checking to attempt to remove the
1386 conflicting alias from the second entry in the pair, which is
1387 normally following in the source file. Also improved the warning
1388 message to make it simpler to see which alias is the problem.
1389 + improve performance of the database iterator by caching search-list.
1392 + add a missing "else" in changes to _nc_read_tic_entry().
1395 + modify _nc_read_tic_entry() so that hashed-database is checked before
1397 + updated CF_CURSES_LIBS check in test/configure script.
1398 + modify configure script and makefiles to split TIC_ARGS and
1399 TINFO_ARGS into pieces corresponding to LDFLAGS and LIBS variables,
1400 to help separate searches for tic- and tinfo-libraries (patch by Nick
1402 + build-fix for lib_mouse.c changes (cf: 20110917).
1405 + fix compiler warning for clang 2.9
1406 + improve merging of mouse events (integrated patch by Damien
1408 + correct mask-check used in lib_mouse for wheel mouse buttons 4/5
1409 (patch by Damien Guibouret).
1412 + modify misc/gen_edit.sh to select a "linux" entry which works with
1413 the current kernel rather than assuming it is always "linux3.0"
1415 + revert a change to getmouse() which had the undesirable side-effect
1416 of suppressing button-release events (report by Damien Guibouret,
1418 + add xterm+kbs fragment from xterm #272 -TD
1419 + add configure option --with-pkg-config-libdir to provide control over
1420 the actual directory into which pc-files are installed, do not use
1421 the pkg-config environment variables (discussion with Frederic L W
1423 + add link to mailing-list archive in announce.html.in, as done in
1424 FAQ (prompted by question by Andrius Bentkus).
1425 + improve manpage install by adjusting the "#include" examples to
1426 show the ncurses-subdirectory used when --disable-overwrite option
1428 + install an alias for "curses" to the ncurses manpage, tied to the
1429 --with-curses-h configure option (suggested by Reuben Thomas).
1432 + propagate error-returns from wresize, i.e., the internal
1433 increase_size and decrease_size functions through resize_term (report
1434 by Tim van der Molen, cf: 20020713).
1435 + fix typo in tset manpage (patch by Sven Joachim).
1438 + add a check to ensure that termcap files which might have "^?" do
1439 not use the terminfo interpretation as "\177".
1440 + minor cleanup of X-terminal emulator section of terminfo.src -TD
1441 + add terminator entry -TD
1442 + add simpleterm entry -TD
1443 + improve wattr_get macros by ensuring that if the window pointer is
1444 null, then the attribute and color values returned will be zero
1448 + add substitution for $RPATH_LIST to misc/ncurses-config.in
1449 + improve performance of tic with hashed-database by caching the
1450 database connection, using atexit() to cleanup.
1451 + modify treatment of 2-character aliases at the beginning of termcap
1452 entries so they are not counted in use-resolution, since these are
1453 guaranteed to be unique. Also ignore these aliases when reporting
1454 the primary name of the entry (cf: 20040501)
1455 + double-check gn (generic) flag in terminal descriptions to
1456 accommodate old/buggy termcap databases which misused that feature.
1457 + minor fixes to _nc_tgetent(), ensure buffer is initialized even on
1461 + improve rpath fix from 20110730 by ensuring that the new $RPATH_LIST
1462 variable is defined in the makefiles which use it.
1463 + build-fix for DragonFlyBSD's pkgsrc in test/configure script.
1464 + build-fixes for NetBSD 5.1 with termcap support enabled.
1465 + corrected k9 in dg460-ansi, add other features based on manuals -TD
1466 + improve trimming of whitespace at the end of terminfo/termcap output
1468 + when writing termcap source, ensure that colons in the description
1469 field are translated to a non-delimiter, i.e., "=".
1470 + add "-0" option to tic/infocmp, to make the termcap/terminfo source
1472 + add a null-pointer check when handling the $CC variable.
1475 + modify configure script and makefiles in c++ and progs to allow the
1476 directory used for rpath option to be overridden, e.g., to work
1477 around updates to the variables used by tic during an install.
1478 + add -K option to tic/infocmp, to provide stricter BSD-compatibility
1480 + add _nc_strict_bsd variable in tic library which controls the
1481 "strict" BSD termcap compatibility from 20110723, plus these
1483 + allow escapes such as "\8" and "\9" when reading termcap
1484 + disallow "\a", "\e", "\l", "\s" and "\:" escapes when reading
1485 termcap files, passing through "a", "e", etc.
1486 + expand "\:" as "\072" on output.
1487 + modify _nc_get_token() to reset the token's string value in case
1488 there is a string-typed token lacking the "=" marker.
1489 + fix a few memory leaks in _nc_tgetent.
1490 + fix a few places where reading from a termcap file could refer to
1492 + add an overflow check when converting terminfo/termcap numeric
1493 values, since terminfo stores those in a short, and they must be
1495 + correct internal variables used for translating to termcap "%>"
1496 feature, and translating from termcap %B to terminfo, needed by
1497 tctest (cf: 19991211).
1498 + amend a minor fix to acsc when loading a termcap file to separate it
1499 from warnings needed for tic (cf: 20040710)
1500 + modify logic in _nc_read_entry() and _nc_read_tic_entry() to allow
1501 a termcap file to be handled via TERMINFO_DIRS.
1502 + modify _nc_infotocap() to include non-mandatory padding when
1503 translating to termcap.
1504 + modify _nc_read_termcap_entry(), passing a flag in the case where
1505 getcap is used, to reduce interactive warning messages.
1508 + add a check in start_color() to limit color-pairs to 256 when
1509 extended colors are not supported (patch by David Benjamin).
1510 + modify setcchar to omit no-longer-needed OR'ing of color pair in
1511 the SetAttr() macro (patch by David Benjamin).
1512 + add kich1 to sun terminfo entry (Yuri Pankov)
1513 + use bold rather than reverse for smso in sun-color terminfo entry
1515 + improve generation of termcap using tic/infocmp -C option, e.g.,
1516 to correspond with 4.2BSD (prompted by discussion with Yuri Pankov
1517 regarding Schilling's test program):
1518 + translate %02 and %03 to %2 and %3 respectively.
1519 + suppress string capabilities which use %s, not supported by tgoto
1520 + use \040 rather than \s
1521 + expand null characters as \200 rather than \0
1522 + modify configure script to support shared libraries for DragonFlyBSD.
1525 + replace an assert() in _nc_Free_Argument() with a regular null
1526 pointer check (report/analysis by Franjo Ivancic).
1527 + modify configure --enable-pc-files option to take into account the
1528 PKG_CONFIG_PATH variable (report by Frederic L W Meunier).
1529 + add/use xterm+tmux chunk from xterm #271 -TD
1530 + resync xterm-new entry from xterm #271 -TD
1531 + add E3 extended capability to linux-basic (Miroslav Lichvar)
1532 + add linux2.2, linux2.6, linux3.0 entries to give context for E3 -TD
1533 + add SI/SO change to linux2.6 entry (Debian #515609) -TD
1534 + fix inconsistent tabset path in pcmw (Todd C. Miller).
1535 + remove a backslash which continued comment, obscuring altos3
1536 definition with OpenBSD toolset (Nicholas Marriott).
1539 + add workaround from xterm #271 changes to ensure that compiler flags
1540 are not used in the $CC variable.
1541 + improve support for shared libraries, tested with AIX 5.3, 6.1 and
1542 7.1 with both gcc 4.2.4 and cc.
1543 + modify configure checks for AIX to include release 7.x
1544 + add loader flags/libraries to libtool options so that dynamic loading
1545 works properly, adapted from ncurses-5.7-ldflags-with-libtool.patch
1546 at gentoo prefix repository (patch by Michael Haubenwallner).
1549 + move include of nc_termios.h out of term_entry.h, since the latter
1550 is installed, e.g., for tack while the former is not (report by
1554 + improve cleanup() function in lib_tstp.c, using _exit() rather than
1555 exit() and checking for SIGTERM rather than SIGQUIT (prompted by
1556 comments forwarded by Nicholas Marriott).
1557 + reduce name pollution from term.h, moving fallback #define's for
1558 tcgetattr(), etc., to new private header nc_termios.h (report by
1560 + two minor fixes for tracing (patch by Vassili Courzakis).
1561 + improve trace initialization by starting it in use_env() and
1563 + review old email, add details for some changelog entries.
1566 + update minix entry to minix 3.2 (Thomas Cort).
1567 + fix a strict compiler warning in change to wattr_get (cf: 20110528).
1570 + fixes for MirBSD port:
1571 + set default prefix to /usr.
1572 + add support for shared libraries in configure script.
1573 + use S_ISREG and S_ISDIR consistently, with fallback definitions.
1574 + add a few more checks based on ncurses/link_test.
1575 + modify MKlib_gen.sh to handle sp-funcs renaming of NCURSES_OUTC type.
1578 + add case to CF_SHARED_OPTS for Interix (patch by Markus Duft).
1579 + used ncurses/link_test to check for behavior when the terminal has
1580 not been initialized and when an application passes null pointers
1581 to the library. Added checks to cover this (prompted by Redhat
1583 + modify MKlib_gen.sh to make its main() function call each function
1584 with zero parameters, to help find inconsistent checking for null
1588 + fix warnings from clang 2.7 "--analyze"
1591 + compiler-warning fixes in panel and progs.
1592 + modify CF_PKG_CONFIG macro, from changes to tin -TD
1593 + modify CF_CURSES_FUNCS configure macro, used in test directory
1595 + work around (non-optimizer) bug in gcc 4.2.1 which caused
1596 test-expression to be omitted from executable.
1597 + force the linker to see a link-time expression of a symbol, to
1598 help work around weak-symbol issues.
1601 + update discussion of MKfallback.sh script in INSTALL; normally the
1602 script is used automatically via the configured makefiles. However
1603 there are still occasions when it might be used directly by packagers
1604 (report by Gunter Schaffler).
1605 + modify misc/ncurses-config.in to omit the "-L" option from the
1606 "--libs" output if the library directory is /usr/lib.
1607 + change order of tests for curses.h versus ncurses.h headers in the
1608 configure scripts for Ada95 and test-directories, to look for
1609 ncurses.h, from fixes to tin -TD
1610 + modify ncurses/tinfo/access.c to account for Tandem's root uid
1611 (report by Joachim Schmitz).
1614 + modify rules in Ada95/src/Makefile.in to ensure that the PIC option
1615 is not used when building a static library (report by Nicolas
1617 + Ada95 build-fix for big-endian architectures such as sparc. This
1618 undoes one of the fixes from 20110319, which added an "Unused" member
1619 to representation clauses, replacing that with pragmas to suppress
1620 warnings about unused bits (patch by Nicolas Boulenguez).
1623 + add check in test/configure for use_window, use_screen.
1624 + add configure-checks for getopt's variables, which may be declared
1625 as different types on some Unix systems.
1626 + add check in test/configure for some legacy curses types of the
1627 function pointer passed to tputs().
1628 + modify init_pair() to accept -1's for color value after
1629 assume_default_colors() has been called (Debian #337095).
1630 + modify test/background.c, adding commmand-line options to demonstrate
1631 assume_default_colors() and use_default_colors().
1634 + modify configure script/source-code to only define _POSIX_SOURCE if
1635 the checks for sigaction and/or termios fail, and if _POSIX_C_SOURCE
1636 and _XOPEN_SOURCE are undefined (report by Valentin Ochs).
1637 + update config.guess, config.sub
1640 + fixes to build c++ binding with clang 3.0 (patch by Alexander
1642 + add check for unctrl.h in test/configure, to work around breakage in
1643 some ncurses packages.
1644 + add "--disable-widec" option to test/configure script.
1645 + add "--with-curses-colr" and "--with-curses-5lib" options to the
1646 test/configure script to address testing with very old machines.
1648 20110404 5.9 release for upload to ftp.gnu.org
1651 + various build-fixes for the rpm/dpkg scripts.
1652 + add "--enable-rpath-link" option to Ada95/configure, to allow
1653 packages to suppress the rpath feature which is normally used for
1654 the in-tree build of sample programs.
1655 + corrected definition of libdir variable in Ada95/src/Makefile.in,
1656 needed for rpm script.
1657 + add "--with-shared" option to Ada95/configure script, to allow
1658 making the C-language parts of the binding use appropriate compiler
1659 options if building a shared library with gnat.
1662 > portability fixes for Ada95 binding:
1663 + add configure check to ensure that SIGINT works with gnat. This is
1664 needed for the "rain" sample program. If SIGINT does not work, omit
1665 that sample program.
1666 + correct typo in check of $PKG_CONFIG variable in Ada95/configure
1667 + add ncurses_compat.c, to supply functions used in the Ada95 binding
1668 which were added in 5.7 and later.
1669 + modify sed expression in CF_NCURSES_ADDON to eliminate a dependency
1673 + add special check in Ada95/configure script for ncurses6 reentrant
1675 + regen Ada html documentation.
1676 + build-fix for Ada shared libraries versus the varargs workaround.
1677 + add rpm and dpkg scripts for Ada95 and test directories, for test
1679 + update test/configure macros CF_CURSES_LIBS, CF_XOPEN_SOURCE and
1681 + add configure check to determine if gnat's project feature supports
1682 libraries, i.e., collections of .ali files.
1683 + make all dereferences in Ada95 samples explicit.
1684 + fix typo in comment in lib_add_wch.c (patch by Petr Pavlu).
1685 + add configure check for, ifdef's for math.h which is in a separate
1686 package on Solaris and potentially not installed (report by Petr
1688 > fixes for Ada95 binding (Nicolas Boulenguez):
1689 + improve type-checking in Ada95 by eliminating a few warning-suppress
1691 + suppress unreferenced warnings.
1692 + make all dereferences in binding explicit.
1695 + regen Ada html documentation.
1696 + change order of -I options from ncurses*-config script when the
1697 --disable-overwrite option was used, so that the subdirectory include
1699 + modify the make-tar.sh scripts to add a MANIFEST and NEWS file.
1700 + modify configure script to provide value for HTML_DIR in
1701 Ada95/gen/Makefile.in, which depends on whether the Ada95 binding is
1702 distributed separately (report by Nicolas Boulenguez).
1703 + modify configure script to add "-g" and/or "-O3" to ADAFLAGS if the
1704 CFLAGS for the build has these options.
1705 + amend change from 20070324, to not add 1 to the result of getmaxx
1706 and getmaxy in the Ada binding (report by Nicolas Boulenguez for
1707 thread in comp.lang.ada).
1708 + build-fix Ada95/samples for gnat 4.5
1709 + spelling fixes for Ada95/samples/explain.txt
1710 > fixes for Ada95 binding (Nicolas Boulenguez):
1711 + add item in Trace_Attribute_Set corresponding to TRACE_ATTRS.
1712 + add workaround for binding to set_field_type(), which uses varargs.
1713 The original binding from 990220 relied on the prevalent
1714 implementation of varargs which did not support or need va_copy().
1715 + add dependency on gen/Makefile.in needed for *-panels.ads
1716 + add Library_Options to library.gpr
1717 + add Languages to library.gpr, for gprbuild
1720 + revert changes to limit-checks from 20110122 (Debian #616711).
1721 > minor type-cleanup of Ada95 binding (Nicolas Boulenguez):
1722 + corrected a minor sign error in a field of Low_Level_Field_Type, to
1724 + replaced C_Int by Curses_Bool as return type for some callbacks, see
1726 + modify samples/sample-explain.adb to provide explicit message when
1727 explain.txt is not found.
1730 + improve makefiles for Ada95 tree (patch by Nicolas Boulenguez).
1731 + fix an off-by-one error in _nc_slk_initialize() from 20100605 fixes
1732 for compiler warnings (report by Nicolas Boulenguez).
1733 + modify Ada95/gen/gen.c to declare unused bits in generated layouts,
1734 needed to compile when chtype is 64-bits using gnat 4.4.5
1736 20110226 5.8 release for upload to ftp.gnu.org
1739 + update release notes, for 5.8.
1740 + regenerated html manpages.
1741 + change open() in _nc_read_file_entry() to fopen() for consistency
1743 + modify misc/run_tic.in to create parent directory, in case this is
1744 a new install of hashed database.
1745 + fix typo in Ada95/mk-1st.awk which causes error with original awk.
1748 + configure script rpath fixes from xterm #269.
1749 + workaround for cygwin's non-functional features.h, to force ncurses'
1750 configure script to define _XOPEN_SOURCE_EXTENDED when building
1751 wide-character configuration.
1752 + build-fix in run_tic.sh for OS/2 EMX install
1753 + add cons25-debian entry (patch by Brian M Carlson, Debian #607662).
1756 + regenerated html manpages.
1757 + use _tracef() in show_where() function of tic, to work correctly with
1758 special case of trace configuration.
1761 + add xterm-utf8 entry as a demo of the U8 feature -TD
1762 + add U8 feature to denote entries for terminal emulators which do not
1763 support VT100 SI/SO when processing UTF-8 encoding -TD
1764 + improve the NCURSES_NO_UTF8_ACS feature by adding a check for an
1765 extended terminfo capability U8 (prompted by mailing list
1769 + start documenting interface changes for upcoming 5.8 release.
1770 + correct limit-checks in derwin().
1771 + correct limit-checks in newwin(), to ensure that windows have nonzero
1772 size (report by Garrett Cooper).
1773 + fix a missing "weak" declaration for pthread_kill (patch by Nicholas
1775 + improve documentation of KEY_ENTER in curs_getch.3x manpage (prompted
1776 by discussion with Kevin Martin).
1779 + modify Ada95/configure script to make the --with-curses-dir option
1780 work without requiring the --with-ncurses option.
1781 + modify test programs to allow them to be built with NetBSD curses.
1782 + document thick- and double-line symbols in curs_add_wch.3x manpage.
1783 + document WACS_xxx constants in curs_add_wch.3x manpage.
1784 + fix some warnings for clang 2.6 "--analyze"
1785 + modify Ada95 makefiles to make html-documentation with the project
1786 file configuration if that is used.
1787 + update config.guess, config.sub
1790 + regenerated html manpages.
1791 + minor fixes to enable lint when trace is not enabled, e.g., with
1793 + fix typo in man/default_colors.3x (patch by Tim van der Molen).
1794 + update ncurses/llib-lncurses*
1797 + fix remaining strict compiler warnings in ncurses library ABI=5,
1798 except those dealing with function pointers, etc.
1801 + modify nc_tparm.h, adding guards against repeated inclusion, and
1802 allowing TPARM_ARG to be overridden.
1803 + fix some strict compiler warnings in ncurses library.
1806 + suppress ncv in screen entry, allowing underline (patch by Alejandro
1808 + also suppress ncv in konsole-base -TD
1809 + fixes in wins_nwstr() and related functions to ensure that special
1810 characters, i.e., control characters are handled properly with the
1811 wide-character configuration.
1812 + correct a comparison in wins_nwstr() (Redhat #661506).
1813 + correct help-messages in some of the test-programs, which still
1814 referred to quitting with 'q'.
1817 + add special case to _nc_infotocap() to recognize the setaf/setab
1818 strings from xterm+256color and xterm+88color, and provide a reduced
1819 version which works with termcap.
1820 + remove obsolete emacs "Local Variables" section from documentation
1821 (request by Sven Joachim).
1822 + update doc/html/index.html to include NCURSES-Programming-HOWTO.html
1823 (report by Sven Joachim).
1826 + modify test/configure and test/Makefile.in to handle this special
1827 case of building within a build-tree (Debian #34182):
1828 mkdir -p build && cd build && ../test/configure && make
1831 + miscellaneous build-fixes for Ada95 and test-directories when built
1833 + use VPATH in makefiles to simplify out-of-tree builds (Debian #34182).
1834 + fix typo in rmso for tek4106 entry -Goran Weinholt
1837 + improve checks in test/configure for X libraries, from xterm #267
1839 + modify test/configure to allow it to use the build-tree's libraries
1840 e.g., when using that to configure the test-programs without the
1841 rpath feature (request by Sven Joachim).
1842 + repurpose "gnome" terminfo entries as "vte", retaining "gnome" items
1843 for compatibility, but generally deprecating those since the VTE
1844 library is what actually defines the behavior of "gnome", etc.,
1848 + compiler warning fixes for test programs.
1849 + various build-fixes for test-programs with pdcurses.
1850 + updated configure checks for X packages in test/configure from xterm
1852 + add configure check to gnatmake, to accommodate cygwin.
1855 + correct list of sub-directories needed in Ada95 tree for building as
1857 + modify scripts in test-directory to improve builds as a separate
1861 + correct parsing of relative tab-stops in tabs program (report by
1863 + adjust configure script so that "t" is not added to library suffix
1864 when weak-symbols are used, allowing the pthread configuration to
1865 more closely match the non-thread naming (report by Werner Fink).
1866 + modify configure check for tic program, used for fallbacks, to a
1867 warning if not found. This makes it simpler to use additonal
1868 scripts to bootstrap the fallbacks code using tic from the build
1869 tree (report by Werner Fink).
1870 + fix several places in configure script using ${variable-value} form.
1871 + modify configure macro CF_LDFLAGS_STATIC to accommodate some loaders
1872 which do not support selectively linking against static libraries
1873 (report by John P. Hartmann)
1874 + fix an unescaped dash in man/tset.1 (report by Sven Joachim).
1877 + correct comparison used for setting 16-colors in linux-16color
1878 entry (Novell #644831) -TD
1879 + improve linux-16color entry, using "dim" for color-8 which makes it
1880 gray rather than black like color-0 -TD
1881 + drop misc/ncu-indent and misc/jpf-indent; they are provided by an
1882 external package "cindent".
1885 + improve linkages in html manpages, adding references to the newer
1886 pages, e.g., *_variables, curs_sp_funcs, curs_threads.
1887 + add checks in tic for inconsistent cursor-movement controls, and for
1888 inconsistent printer-controls.
1889 + fill in no-parameter forms of cursor-movement where a parameterized
1890 form is available -TD
1891 + fill in missing cursor controls where the form of the controls is
1893 + fix inconsistent punctuation in form_variables manpage (patch by
1895 + add parameterized cursor-controls to linux-basic (report by Dae) -TD
1896 > patch by Juergen Pfeifer:
1897 + document how to build 32-bit libraries in README.MinGW
1898 + fixes to filename computation in mk-dlls.sh.in
1899 + use POSIX locale in mk-dlls.sh.in rather than en_US (report by Sven
1901 + add a check in mk-dlls.sh.in to obtain the size of a pointer to
1902 distinguish between 32-bit and 64-bit hosts. The result is stored
1906 + add "XT" capability to entries for terminals that support both
1907 xterm-style mouse- and title-controls, for "screen" which
1908 special-cases TERM beginning with "xterm" or "rxvt" -TD
1909 > patch by Juergen Pfeifer:
1910 + use 64-Bit MinGW toolchain (recommended package from TDM, see
1912 + support pthreads when using the TDM MinGW toolchain
1915 + regenerated html manpages.
1916 + minor fixes for symlinks to curs_legacy.3x and curs_slk.3x manpages.
1917 + add manpage for sp-funcs.
1918 + add sp-funcs to test/listused.sh, for documentation aids.
1921 + add manpages for summarizing public variables of curses-, terminfo-
1923 + minor fixes to manpages for consistency (patch by Jason McIntyre).
1924 + modify tic's -I/-C dump to reformat acsc strings into canonical form
1925 (sorted, unique mapping) (cf: 971004).
1926 + add configure check for pthread_kill(), needed for some old
1930 + add configure option --without-tests, to suppress building test
1931 programs (request by Frederic L W Meunier).
1934 + modify nsterm, xnuppc and tek4115 to make sgr/sgr0 consistent -TD
1935 + add check in terminfo source-reader to provide more informative
1936 message when someone attempts to run tic on a compiled terminal
1937 description (prompted by Debian #593920).
1938 + note in infotocap and captoinfo manpages that they read terminal
1939 descriptions from text-files (Debian #593920).
1940 + improve acsc string for vt52, show arrow keys (patch by Benjamin
1944 + document in manpages that "mv" functions first use wmove() to check
1945 the window pointer and whether the position lies within the window
1946 (suggested by Poul-Henning Kamp).
1947 + fixes to curs_color.3x, curs_kernel.3x and wresize.3x manpages (patch
1948 by Tim van der Molen).
1949 + modify configure script to transform library names for tic- and
1950 tinfo-libraries so that those build properly with Mac OS X shared
1951 library configuration.
1952 + modify configure script to ensure that it removes conftest.dSYM
1953 directory leftover on checks with Mac OS X.
1954 + modify configure script to cleanup after check for symbolic links.
1957 + correct a typo in mk-1st.awk (patch by Gabriele Balducci)
1959 + improve configure checks for location of tic and infocmp programs
1960 used for installing database and for generating fallback data,
1961 e.g., for cross-compiling.
1962 + add Markus Kuhn's wcwidth function for compiling MinGW
1963 + add special case to CF_REGEX for cross-compiling to MinGW target.
1966 + modify initialization check for win32con driver to eliminate need for
1967 special case for TERM "unknown", using terminal database if available
1968 (prompted by discussion with Roumen Petrov).
1969 + for MinGW port, ensure that terminal driver is setup if tgetent()
1970 is called (patch by Roumen Petrov).
1971 + document tabs "-0" and "-8" options in manpage.
1972 + fix Debian "lintian" issues with manpages reported in
1973 http://lintian.debian.org/full/csmall@debian.org.html#ncurses
1976 + add a check in tic for missing set_tab if clear_all_tabs given.
1977 + improve use of symbolic links in makefiles by using "-f" option if
1978 it is supported, to eliminate temporary removal of the target
1979 (prompted by http://www.t2-project.org/packages/ncurses.html)
1980 + minor improvement to test/ncurses.c, reset color pairs in 'd' test
1981 after exit from 'm' main-menu command.
1982 + improved ncu-indent, from mawk changes, allows more than one of
1983 GCC_NORETURN, GCC_PRINTFLIKE and GCC_SCANFLIKE on a single line.
1986 + add hard-reset for rs2 to wsvt25 to help ensure that reset ends
1987 the alternate character set (patch by Nicholas Marriott)
1988 + remove tar-copy.sh and related configure/Makefile chunks, since the
1989 Ada95 binding is now installed using rules in Ada95/src.
1992 + continue integrating changes to use gnatmake project files in Ada95
1993 + add/use configure check to turn on project rules for Ada95/src.
1994 + revert the vfork change from 20100130, since it does not work.
1997 + continue integrating changes to use gnatmake project files in Ada95
1998 + old gnatmake (3.15) does not produce libraries using project-file;
1999 work around by adding script to generate alternate makefile.
2002 + continue integrating changes to use gnatmake project files in Ada95
2003 + add configure --with-ada-sharedlib option, for the test_make rule.
2004 + move Ada95-related logic into aclocal.m4, since additional checks
2005 will be needed to distinguish old/new implementations of gnat.
2008 + start integrating changes to use gnatmake project files in Ada95 tree
2009 + add test_make / test_clean / test_install rules in Ada95/src
2010 + change install-path for adainclude directory to /usr/share/ada (was
2012 + update Ada95/configure.
2013 + add mlterm+256color entry, for mlterm 3.0.0 -TD
2014 + modify test/configure to use macros to ensure consistent order
2015 of updating LIBS variable.
2018 + change search order of options for Solaris in CF_SHARED_OPTS, to
2019 work with 64-bit compiles.
2020 + correct quoting of assignment in CF_SHARED_OPTS case for aix
2024 + regenerated html documentation.
2025 + modify test/configure to support pkg-config for checking X libraries
2027 + add/use configure macro CF_ADD_LIB to force consistency of
2028 assignments to $LIBS, etc.
2029 + fix configure script for combining --with-pthread
2030 and --enable-weak-symbols options.
2033 + correct cross-compiling configure check for CF_MKSTEMP macro, by
2034 adding a check cache variable set by AC_CHECK_FUNC (report by
2036 + simplify include-dependencies of make_hash and make_keys, to reduce
2037 the need for setting BUILD_CPPFLAGS in cross-compiling when the
2038 build- and target-machines differ.
2039 + repair broken-linker configuration by restoring a definition of SP
2040 variable to curses.priv.h, and adjusting for cases where sp-funcs
2042 + improve configure macro CF_AR_FLAGS, allowing ARFLAGS environment
2043 variable to override (prompted by report by Pablo Cazallas).
2046 + add configure option --enable-pthreads-eintr to control whether the
2047 new EINTR feature is enabled.
2048 + modify logic in pthread configuration to allow EINTR to interrupt
2049 a read operation in wgetch() (Novell #540571, patch by Werner Fink).
2050 + drop mkdirs.sh, use "mkdir -p".
2051 + add configure option --disable-libtool-version, to use the
2052 "-version-number" feature which was added in libtool 1.5 (report by
2053 Peter Haering). The default value for the option uses the newer
2054 feature, which makes libraries generated using libtool compatible
2055 with the standard builds of ncurses.
2056 + updated test/configure to match configure script macros.
2057 + fixes for configure script from lynx changes:
2058 + improve CF_FIND_LINKAGE logic for the case where a function is
2059 found in predefined libraries.
2060 + revert part of change to CF_HEADER (cf: 20100424)
2063 + correct limit-check in wredrawln, accounting for begy/begx values
2064 (patch by David Benjamin).
2065 + fix most compiler warnings from clang.
2066 + amend build-fix for OpenSolaris, to ensure that a system header is
2067 included in curses.h before testing feature symbols, since they
2068 may be defined by that route.
2071 + fix some strict compiler warnings in ncurses library.
2072 + modify configure macro CF_HEADER_PATH to not look for variations in
2073 the predefined include directories.
2074 + improve configure macros CF_GCC_VERSION and CF_GCC_WARNINGS to work
2075 with gcc 4.x's c89 alias, which gives warning messages for cases
2076 where older versions would produce an error.
2079 + modify _nc_capcmp() to work with cancelled strings.
2080 + correct translation of "^" in _nc_infotocap(), used to transform
2081 terminfo to termcap strings
2082 + add configure --disable-rpath-hack, to allow disabling the feature
2083 which adds rpath options for libraries in unusual places.
2084 + improve CF_RPATH_HACK_2 by checking if the rpath option for a given
2085 directory was already added.
2086 + improve CF_RPATH_HACK_2 by using ldd to provide a standard list of
2087 directories (which will be ignored).
2090 + improve win_driver.c handling of mouse:
2091 + discard motion events
2092 + avoid calling _nc_timed_wait when there is a mouse event
2093 + handle 4th and "rightmost" buttons.
2094 + quote substitutions in CF_RPATH_HACK_2 configure macro, needed for
2095 cases where there are embedded blanks in the rpath option.
2098 + add configure check for exctags vs ctags, to work around pkgsrc.
2099 + simplify logic in _nc_get_screensize() to make it easier to see how
2100 environment variables may override system- and terminfo-values
2101 (prompted by discussion with Igor Bujna).
2102 + make debug-traces for COLOR_PAIR and PAIR_NUMBER less verbose.
2103 + improve handling of color-pairs embedded in attributes for the
2104 extended-colors configuration.
2105 + modify MKlib_gen.sh to build link_test with sp-funcs.
2106 + build-fixes for OpenSolaris aka Solaris 11, for wide-character
2107 configuration as well as for rpath feature in *-config scripts.
2110 + refactor CF_SHARED_OPTS configure macro, making CF_RPATH_HACK more
2112 + improve configure CF_REGEX, similar fixes.
2113 + improve configure CF_FIND_LINKAGE, adding add check between system
2114 (default) and explicit paths, where we can find the entrypoint in the
2116 + add check if Gpm_Open() returns a -2, e.g., for "xterm". This is
2117 normally suppressed but can be overridden using $NCURSES_GPM_TERMS.
2118 Ensure that Gpm_Close() is called in this case.
2121 + rename atari and st52 terminfo entries to atari-old, st52-old, use
2122 newer entries from FreeMiNT by Guido Flohr (from patch/report by Alan
2126 + modify install-rule for manpages so that *-config manpages will
2127 install when building with --srcdir (report by Sven Joachim).
2128 + modify CF_DISABLE_LEAKS configure macro so that the --enable-leaks
2129 option is not the same as --disable-leaks (GenToo #305889).
2130 + modify #define's for build-compiler to suppress cchar_t symbol from
2131 compile of make_hash and make_keys, improving cross-compilation of
2132 ncursesw (report by Bernhard Rosenkraenzer).
2133 + modify CF_MAN_PAGES configure macro to replace all occurrences of
2134 TPUT in tput.1's manpage (Debian #573597, report/analysis by Anders
2138 + generate manpages for the *-config scripts, adapted from help2man
2139 (suggested by Sven Joachim).
2140 + use va_copy() in _nc_printf_string() to avoid conflicting use of
2141 va_list value in _nc_printf_length() (report by Wim Lewis).
2144 + add Ada95/configure script, to use in tar-file created by
2146 + fix typo in wresize.3x (patch by Tim van der Molen).
2147 + modify screen-bce.XXX entries to exclude ech, since screen's color
2148 model does not clear with color for that feature -TD
2151 + add make-tar.sh scripts to Ada95 and test subdirectories to help with
2152 making those separately distributable.
2153 + build-fix for static libraries without dlsym (Debian #556378).
2154 + fix a syntax error in man/form_field_opts.3x (patch by Ingo
2158 + add several screen-bce.XXX entries -TD
2161 + update mrxvt terminfo entry -TD
2162 + modify win_driver.c to support mouse single-clicks.
2163 + correct name for termlib in ncurses*-config, e.g., if it is renamed
2164 to provide a single file for ncurses/ncursesw libraries (patch by
2168 + use vfork in test/ditto.c if available (request by Mike Frysinger).
2169 + miscellaneous cleanup of manpages.
2170 + fix typo in curs_bkgd.3x (patch by Tim van der Molen).
2171 + build-fix for --srcdir (patch by Miroslav Lichvar).
2174 + for term-driver configuration, ensure that the driver pointer is
2175 initialized in setupterm so that terminfo/termcap programs work.
2176 + amend fix for Debian #542031 to ensure that wattrset() returns only
2177 OK or ERR, rather than the attribute value (report by Miroslav
2179 + reorder WINDOWLIST to put WINDOW data after SCREEN pointer, making
2180 _nc_screen_of() compatible between normal/wide libraries again (patch
2181 by Miroslav Lichvar)
2182 + review/fix include-dependencies in modules files (report by Miroslav
2186 + modify win_driver.c to initialize acs_map for win32 console, so
2187 that line-drawing works.
2188 + modify win_driver.c to initialize TERMINAL struct so that programs
2189 such as test/lrtest.c and test/ncurses.c which test string
2190 capabilities can run.
2191 + modify term-driver modules to eliminate forward-reference
2195 + modify configure macro CF_XOPEN_SOURCE, etc., to use CF_ADD_CFLAGS
2196 consistently to add new -D's while removing duplicates.
2197 + modify a few configure macros to consistently put new options
2198 before older in the list.
2199 + add tiparm(), based on review of X/Open Curses Issue 7.
2200 + minor documentation cleanup.
2201 + update config.guess, config.sub from
2202 http://savannah.gnu.org/projects/config
2203 (caveat - its maintainer put 2010 copyright date on files dated 2009)
2206 + minor improvement to tic's checking of similar SGR's to allow for the
2207 most common case of SGR 0.
2208 + modify getmouse() to act as its documentation implied, returning on
2209 each call the preceding event until none are left. When no more
2210 events remain, it will return ERR.
2213 + change order of lookup in progs/tput.c, looking for terminfo data
2214 first. This fixes a confusion between termcap "sg" and terminfo
2215 "sgr" or "sgr0", originally from 990123 changes, but exposed by
2216 20091114 fixes for hashing. With this change, only "dl" and "ed" are
2217 ambiguous (Mandriva #56272).
2220 + add bterm terminfo entry, based on bogl 0.1.18 -TD
2221 + minor fix to rxvt+pcfkeys terminfo entry -TD
2222 + build-fixes for Ada95 tree for gnat 4.4 "style".
2225 + remove old check in mvderwin() which prevented moving a derived
2226 window whose origin happened to coincide with its parent's origin
2227 (report by Katarina Machalkova).
2228 + improve test/ncurses.c to put mouse droppings in the proper window.
2229 + update minix terminfo entry -TD
2230 + add bw (auto-left-margin) to nsterm* entries (Benjamin Sittler)
2233 + correct transfer of multicolumn characters in multirow
2234 field_buffer(), which stopped at the end of the first row due to
2235 filling of unused entries in a cchar_t array with nulls.
2236 + updated nsterm* entries (Benjamin Sittler, Emanuele Giaquinta)
2237 + modify _nc_viscbuf2() and _tracecchar_t2() to show wide-character
2239 + use strdup() in set_menu_mark(), restore .marklen struct member on
2241 + eliminate clause 3 from the UCB copyrights in read_termcap.c and
2243 ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
2244 (patch by Nicholas Marriott).
2245 + replace a malloc in tic.c with strdup, checking for failure (patch by
2247 + update config.guess, config.sub from
2248 http://savannah.gnu.org/projects/config
2251 + correct layout of working window used to extract data in
2252 wide-character configured by set_field_buffer (patch by Rafael
2254 + improve some limit-checks related to filename length in reading and
2255 writing terminfo entries.
2256 + ensure that filename is always filled in when attempting to read
2257 a terminfo entry, so that infocmp can report the filename (patch
2258 by Nicholas Marriott).
2261 + modify mk-1st.awk to allow tinfo library to be built when term-driver
2263 + add error-check to configure script to ensure that sp-funcs is
2264 enabled if term-driver is, since some internal interfaces rely upon
2268 + fix case where progs/tput is used while sp-funcs is configure; this
2269 requires save/restore of out-character function from _nc_prescreen
2270 rather than the SCREEN structure (report by Charles Wilson).
2271 + fix typo in man/curs_trace.3x which caused incorrect symbolic links
2272 + improved configure macros CF_GCC_ATTRIBUTES, CF_PROG_LINT.
2276 + updated man/curs_trace.3x
2277 + limit hashing for termcap-names to 2-characters (Ubuntu #481740).
2278 + change a variable name in lib_newwin.c to make it clearer which
2279 value is being freed on error (patch by Nicholas Marriott).
2282 + improve test/ncurses.c color-cycling test by reusing attribute-
2283 and color-cycling logic from the video-attributes screen.
2284 + add ifdef'd with NCURSES_INTEROP_FUNCS experimental bindings in form
2285 library which help make it compatible with interop applications
2286 (patch by Juergen Pfeifer).
2287 + add configure option --enable-interop, for integrating changes
2288 for generic/interop support to form-library by Juergen Pfeifer
2291 + modify use of $CC environment variable which is defined by X/Open
2292 as a curses feature, to ignore it if it is not a single character
2293 (prompted by discussion with Benjamin C W Sittler).
2294 + add START_TRACE in slk_init
2295 + fix a regression in _nc_ripoffline which made test/ncurses.c not show
2296 soft-keys, broken in 20090927 merging.
2297 + change initialization of "hidden" flag for soft-keys from true to
2298 false, broken in 20090704 merging (Ubuntu #464274).
2299 + update nsterm entries (patch by Benjamin C W Sittler, prompted by
2300 discussion with Fabian Groffen in GenToo #206201).
2301 + add test/xterm-256color.dat
2304 + quiet some pedantic gcc warnings.
2305 + modify _nc_wgetch() to check for a -1 in the fifo, e.g., after a
2306 SIGWINCH, and discard that value, to avoid confusing application
2307 (patch by Eygene Ryabinkin, FreeBSD #136223).
2310 + modify handling of $PKG_CONFIG_LIBDIR to use only the first item in
2311 a possibly colon-separated list (Debian #550716).
2314 + supply a null-terminator to buffer in _nc_viswibuf().
2315 + fix a sign-extension bug in unget_wch() (report by Mike Gran).
2316 + minor fixes to error-returns in default function for tputs, as well
2320 + add WACS_xxx definitions to wide-character configuration for thick-
2321 and double-lines (discussion with Slava Zanko).
2322 + remove unnecessary kcan assignment to ^C from putty (Sven Joachim)
2323 + add ccc and initc capabilities to xterm-16color -TD
2324 > patch by Benjamin C W Sittler:
2326 + correct initc capability of linux-c-nc end-of-range
2327 + similar change for dg+ccc and dgunix+ccc
2330 + move leak-checking for comp_captab.c into _nc_leaks_tinfo() since
2331 that module since 20090711 is in libtinfo.
2332 + add configure option --enable-term-driver, to allow compiling with
2333 terminal-driver. That is used in MinGW port, and (being somewhat
2334 more complicated) is an experimental alternative to the conventional
2335 termlib internals. Currently, it requires the sp-funcs feature to
2337 + completed integrating "sp-funcs" by Juergen Pfeifer in ncurses
2338 library (some work remains for forms library).
2341 + document return code from define_key (report by Mike Gran).
2342 + make some symbolic links in the terminfo directory-tree shorter
2343 (patch by Daniel Jacobowitz, forwarded by Sven Joachim).).
2344 + fix some groff warnings in terminfo.5, etc., from recent Debian
2346 + change ncv and op capabilities in sun-color terminfo entry to match
2347 Sun's entry for this (report by Laszlo Peter).
2348 + improve interix smso terminfo capability by using reverse rather than
2349 bold (report by Kristof Zelechovski).
2352 + add some test programs (and make these use the same special keys
2353 by sharing linedata.h functions):
2356 test/test_addchstr.c
2357 test/test_add_wchstr.c
2358 + correct internal _nc_insert_ch() to use _nc_insert_wch() when
2359 inserting wide characters, since the wins_wch() function that it used
2360 did not update the cursor position (report by Ciprian Craciun).
2363 + fix typo s/is_timeout/is_notimeout/ which made "man is_notimeout" not
2365 + add null-pointer checks to other opaque-functions.
2366 + add is_pad() and is_subwin() functions for opaque access to WINDOW
2367 (discussion with Mark Dickinson).
2368 + correct merge to lib_newterm.c, which broke when sp-funcs was
2372 + build-fix for building outside source-tree (report by Sven Joachim).
2373 + fix Debian lintian warning for man/tabs.1 by making section number
2374 agree with file-suffix (report by Sven Joachim).
2375 + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
2378 + workaround for bug in g++ 4.1-4.4 warnings for wattrset() macro on
2379 amd64 (Debian #542031).
2380 + fix typo in curs_mouse.3x (Debian #429198).
2383 + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
2386 + correct use of terminfo capabilities for initializing soft-keys,
2387 broken in 20090510 merging.
2388 + modify wgetch() to ensure it checks SIGWINCH when it gets an error
2389 in non-blocking mode (patch by Clemens Ladisch).
2390 + use PATH_SEPARATOR symbol when substituting into run_tic.sh, to
2391 help with builds on non-Unix platforms such as OS/2 EMX.
2392 + modify scripting for misc/run_tic.sh to test configure script's
2393 $cross_compiling variable directly rather than comparing host/build
2394 compiler names (prompted by comment in GenToo #249363).
2395 + fix configure script option --with-database, which was coded as an
2397 + build-fixes for --srcdir (report by Frederic L W Meunier).
2400 + separate _nc_find_entry() and _nc_find_type_entry() from
2401 implementation details of hash function.
2404 + add tabs.1 to man/man_db.renames
2405 + modify lib_addch.c to compensate for removal of wide-character test
2406 from unctrl() in 20090704 (Debian #539735).
2409 + improve discussion in INSTALL for use of system's tic/infocmp for
2410 cross-compiling and building fallbacks.
2411 + modify test/demo_termcap.c to correspond better to options in
2412 test/demo_terminfo.c
2413 + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
2414 + fix logic for 'V' in test/ncurses.c tests f/F.
2417 + correct logic in tigetnum(), which caused tput program to treat all
2418 string capabilities as numeric (report by Rajeev V Pillai,
2422 + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
2425 + fix a null-pointer check in _nc_format_slks() in lib_slk.c, from
2427 + modify _nc_find_type_entry() to use hashing.
2428 + make CCHARW_MAX value configurable, noting that changing this would
2429 change the size of cchar_t, and would be ABI-incompatible.
2430 + modify test-programs, e.g,. test/view.c, to address subtle
2431 differences between Tru64/Solaris and HPUX/AIX getcchar() return
2433 + modify length returned by getcchar() to count the trailing null
2434 which is documented in X/Open (cf: 20020427).
2435 + fixes for test programs to build/work on HPUX and AIX, etc.
2438 + improve performance of tigetstr, etc., by using hashing code from tic.
2439 + minor fixes for memory-leak checking.
2440 + add test/demo_terminfo, for comparison with demo_termcap
2443 + remove wide-character checks from unctrl() (patch by Clemens Ladisch).
2444 + revise wadd_wch() and wecho_wchar() to eliminate dependency on
2446 + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
2449 + update llib-lncurses[wt] to use sp-funcs.
2450 + various code-fixes to build/work with --disable-macros configure
2452 + add several new files from Juergen Pfeifer which will be used when
2453 integration of "sp-funcs" is complete. This includes a port to
2457 + move definition for NCURSES_WRAPPED_VAR back to ncurses_dll.h, to
2458 make includes of term.h without curses.h work (report by "Nix").
2459 + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
2462 + fix a regression in lib_tputs.c, from ongoing merges.
2465 + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
2468 + fix an infinite recursion when adding a legacy-coding 8-bit value
2469 using insch() (report by Clemens Ladisch).
2470 + free home-terminfo string in del_curterm() (patch by Dan Weber).
2471 + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
2474 + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
2477 + work around antique BSD game's manipulation of stdscr, etc., versus
2478 SCREEN's copy of the pointer (Debian #528411).
2479 + add a cast to wattrset macro to avoid compiler warning when comparing
2480 its result against ERR (adapted from patch by Matt Kraii, Debian
2484 + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
2487 + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
2488 + add vwmterm terminfo entry (patch by Bryan Christ).
2491 + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
2494 + build fix for _nc_free_and_exit() change in 20090418 (report by
2498 + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
2501 + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
2502 This change finishes merging for menu and panel libraries, does
2503 part of the form library.
2506 + suppress configure check for static/dynamic linker flags for gcc on
2507 Darwin (report by Nelson Beebe).
2510 + extend ansi.sys pfkey capability from kf1-kf10 to kf1-kf48, moving
2511 function key definitions from emx-base for consistency -TD
2512 + correct missing final 'p' in pfkey capability of ansi.sys-old (report
2513 by Kalle Olavi Niemitalo).
2514 + improve test/ncurses.c 'F' test, show combining characters in color.
2515 + quiet a false report by cppcheck in c++/cursesw.cc by eliminating
2516 a temporary variable.
2517 + use _nc_doalloc() rather than realloc() in a few places in ncurses
2518 library to avoid leak in out-of-memory condition (reports by William
2519 Egert and Martin Ettl based on cppcheck tool).
2520 + add --with-ncurses-wrap-prefix option to test/configure (discussion
2521 with Charles Wilson).
2522 + use ncurses*-config scripts if available for test/configure.
2523 + update test/aclocal.m4 and test/configure
2524 > patches by Charles Wilson:
2525 + modify CF_WITH_LIBTOOL configure check to allow unreleased libtool
2526 version numbers (e.g. which include alphabetic chars, as well as
2527 digits, after the final '.').
2528 + improve use of -no-undefined option for libtool by setting an
2529 intermediate variable LT_UNDEF in the configure script, and then
2530 using that in the libtool link-commands.
2531 + fix an missing use of NCURSES_PUBLIC_VAR() in tinfo/MKcodes.awk
2532 from 20090321 changes.
2533 + improve mk-1st.awk script by writing separate cases for the
2534 LIBTOOL_LINK command, depending on which library (ncurses, ticlib,
2535 termlib) is to be linked.
2536 + modify configure.in to allow broken-linker configurations, not just
2537 enable-reentrant, to set public wrap prefix.
2540 + add TICS_LIST and SHLIB_LIST to allow libtool 2.2.6 on Cygwin to
2541 build with tic and term libraries (patch by Charles Wilson).
2542 + add -no-undefined option to libtool for Cygwin, MinGW, U/Win and AIX
2543 (report by Charles Wilson).
2544 + fix definition for c++/Makefile.in's SHLIB_LIST, which did not list
2545 the form, menu or panel libraries (patch by Charles Wilson).
2546 + add configure option --with-wrap-prefix to allow setting the prefix
2547 for functions used to wrap global variables to something other than
2548 "_nc_" (discussion with Charles Wilson).
2551 + modify scripts to generate ncurses*-config and pc-files to add
2552 dependency for tinfo library (patch by Charles Wilson).
2553 + improve comparison of program-names when checking for linked flavors
2554 such as "reset" by ignoring the executable suffix (reports by Charles
2555 Wilson, Samuel Thibault and Cedric Bretaudeau on Cygwin mailing
2557 + suppress configure check for static/dynamic linker flags for gcc on
2558 Solaris 10, since gcc is confused by absence of static libc, and
2559 does not switch back to dynamic mode before finishing the libraries
2560 (reports by Joel Bertrand, Alan Pae).
2561 + minor fixes to Intel compiler warning checks in configure script.
2562 + modify _nc_leaks_tinfo() so leak-checking in test/railroad.c works.
2563 + modify set_curterm() to make broken-linker configuration work with
2564 changes from 20090228 (report by Charles Wilson).
2567 + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
2568 + modify declaration of cur_term when broken-linker is used, but
2569 enable-reentrant is not, to match pre-5.7 (report by Charles Wilson).
2572 + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
2575 + add configure script --enable-sp-funcs to enable the new set of
2577 + start integrating patches by Juergen Pfeifer:
2578 + add extended functions which specify the SCREEN pointer for several
2579 curses functions which use the global SP (these are incomplete;
2580 some internals work is needed to complete these).
2581 + add special cases to configure script for MinGW port.
2584 + update several configure macros from lynx changes
2585 + append (not prepend) to CFLAGS/CPPFLAGS
2586 + change variable from PATHSEP to PATH_SEPARATOR
2587 + improve install-rules for pc-files (patch by Miroslav Lichvar).
2588 + make it work with $DESTDIR
2589 + create the pkg-config library directory if needed.
2592 + modify init_pair() to allow caller to create extra color pairs beyond
2593 the color_pairs limit, which use default colors (request by Emanuele
2595 + add misc/terminfo.tmp and misc/*.pc to "sources" rule.
2596 + fix typo "==" where "=" is needed in ncurses-config.in and
2597 gen-pkgconfig.in files (Debian #512161).
2600 + add -shared option to MK_SHARED_LIB when -Bsharable is used, for
2601 *BSD's, without which "main" might be one of the shared library's
2602 dependencies (report/analysis by Ken Dickey).
2603 + modify waddch_literal(), updating line-pointer after a multicolumn
2604 character is found to not fit on the current row, and wrapping is
2605 done. Since the line-pointer was not updated, the wrapped
2606 multicolumn character was written to the beginning of the current row
2607 (cf: 20041023, reported by "Nick" regarding problem with ncmpc
2608 http://musicpd.org/mantis/bug_view_page.php?bug_id=1930).
2611 + add screen.Eterm terminfo entry (GenToo #124887) -TD
2612 + modify adacurses-config to look for ".ali" files in the adalib
2614 + correct install for Ada95, which omitted libAdaCurses.a used in
2616 + change install for adacurses-config to provide additional flavors
2617 such as adacursesw-config, for ncursesw (GenToo #167849).
2620 + remove undeveloped feature in ncurses-config.in for setting
2622 + recent change to ncurses-config.in did not take into account the
2623 --disable-overwrite option, which sets $includedir to the
2624 subdirectory and using just that for a -I option does not work - fix
2625 (report by Frederic L W Meunier).
2628 + modify gen-pkgconfig.in to eliminate a dependency on rpath when
2629 deciding whether to add $LIBS to --libs output; that should be shown
2630 for the ncurses and tinfo libraries without taking rpath into
2632 + fix an overlooked change from $AR_OPTS to $ARFLAGS in mk-1st.awk,
2633 used in static libraries (report by Marty Jack).
2636 + add a configure-time check to pick a suitable value for
2637 CC_SHARED_OPTS for Solaris (report by Dagobert Michelsen).
2638 + add configure --with-pkg-config and --enable-pc-files options, along
2639 with misc/gen-pkgconfig.in which can be used to generate ".pc" files
2640 for pkg-config (request by Jan Engelhardt).
2641 + use $includedir symbol in misc/ncurses-config.in, add --includedir
2643 + change makefiles to use $ARFLAGS rather than $AR_OPTS, provide a
2644 configure check to detect whether a "-" is needed before "ar"
2646 + update config.guess, config.sub from
2647 http://savannah.gnu.org/projects/config
2650 + modify mk-1st.awk to work with extra categories for tinfo library.
2651 + modify configure script to allow building shared libraries with gcc
2652 on AIX 5 or 6 (adapted from patch by Lital Natan).
2655 + modify to omit the opaque-functions from lib_gen.o when
2656 --disable-ext-funcs is used.
2657 + add test/clip_printw.c to illustrate how to use printw without
2659 + modify ncurses 'F' test to demo wborder_set() with colored lines.
2660 + modify ncurses 'f' test to demo wborder() with colored lines.
2663 + add check for failure to open hashed-database needed for db4.6
2665 + corrected --without-manpages option; previous change only suppressed
2666 the auxiliary rules install.man and uninstall.man
2667 + add case for FreeMINT to configure macro CF_XOPEN_SOURCE (patch from
2669 + fixes from NetBSD port at
2670 http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/devel/ncurses/patches
2671 patch-ac (build-fix for DragonFly)
2672 patch-ae (use INSTALL_SCRIPT for installing misc/ncurses*-config).
2673 + improve configure script macros CF_HEADER_PATH and CF_LIBRARY_PATH
2674 by adding CFLAGS, CPPFLAGS and LDFLAGS, LIBS values to the
2676 + correct title string for keybound manpage (patch by Frederic Culot,
2677 OpenBSD documentation/6019),
2680 + move del_curterm() call from _nc_freeall() to _nc_leaks_tinfo() to
2681 work for progs/clear, progs/tabs, etc.
2682 + correct buffer-size after internal resizing of wide-character
2683 set_field_buffer(), broken in 20081018 changes (report by Mike Gran).
2684 + add "-i" option to test/filter.c to tell it to use initscr() rather
2685 than newterm(), to investigate report on comp.unix.programmer that
2686 ncurses would clear the screen in that case (it does not - the issue
2687 was xterm's alternate screen feature).
2688 + add check in mouse-driver to disable connection if GPM returns a
2689 zero, indicating that the connection is closed (Debian #506717,
2690 adapted from patch by Samuel Thibault).
2693 + improve a workaround in adding wide-characters, when a control
2694 character is found. The library (cf: 20040207) uses unctrl() to
2695 obtain a printable version of the control character, but was not
2696 passing color or video attributes.
2697 + improve test/ncurses.c 'a' test, using unctrl() more consistently to
2698 display meta-characters.
2699 + turn on _XOPEN_CURSES definition in curses.h
2700 + add eterm-color entry (report by Vincent Lefevre) -TD
2701 + correct use of key_name() in test/ncurses.c 'A' test, which only
2702 displays wide-characters, not key-codes since 20070612 (report by
2706 + change _nc_has_mouse() to has_mouse(), reflect its use in C++ and
2707 Ada95 (patch by Juergen Pfeifer).
2708 + document in TO-DO an issue with Cygwin's package for GNAT (report
2710 + improve error-checking of command-line options in "tabs" program.
2713 + change several terminfo entries to make consistent use of ANSI
2715 + add "tabs" program (prompted by Debian #502260).
2716 + add configure --without-manpages option (request by Mike Frysinger).
2718 20081102 5.7 release for upload to ftp.gnu.org
2721 + add a manpage to discuss memory leaks.
2722 + add support for shared libraries for QNX (other than libtool, which
2723 does not work well on that platform).
2724 + build-fix for QNX C++ binding.
2727 + build-fixes for OS/2 EMX.
2728 + modify form library to accept control characters such as newline
2729 in set_field_buffer(), which is compatible with Solaris (report by
2731 + modify configure script to assume --without-hashed-db when
2732 --disable-database is used.
2733 + add "-e" option in ncurses/Makefile.in when generating source-files
2734 to force earlier exit if the build environment fails unexpectedly
2735 (prompted by patch by Adrian Bunk).
2736 + change configure script to use CF_UTF8_LIB, improved variant of
2740 + add teraterm4.59 terminfo entry, use that as primary teraterm entry, rename
2741 original to teraterm2.3 -TD
2742 + update "gnome" terminfo to 2.22.3 -TD
2743 + update "konsole" terminfo to 1.6.6, needs today's fix for tic -TD
2744 + add "aterm" terminfo -TD
2745 + add "linux2.6.26" terminfo -TD
2746 + add logic to tic for cancelling strings in user-defined capabilities,
2750 + regenerated html documentation.
2751 + add -m and -s options to test/keynames.c and test/key_names.c to test
2752 the meta() function with keyname() or key_name(), respectively.
2753 + correct return value of key_name() on error; it is null.
2754 + document some unresolved issues for rpath and pthreads in TO-DO.
2755 + fix a missing prototype for ioctl() on OpenBSD in tset.c
2756 + add configure option --disable-tic-depends to make explicit whether
2757 tic library depends on ncurses/ncursesw library, amends change from
2758 20080823 (prompted by Debian #501421).
2761 + some build-fixes for configure --disable-ext-funcs (incomplete, but
2762 works for C/C++ parts).
2763 + improve configure-check for awks unable to handle large strings, e.g.
2764 AIX 5.1 whose awk silently gives up on large printf's.
2767 + fix build for --with-dmalloc by workaround for redefinition of
2768 strndup between string.h and dmalloc.h
2769 + fix build for --disable-sigwinch
2770 + add environment variable NCURSES_GPM_TERMS to allow override to use
2771 GPM on terminals other than "linux", etc.
2772 + disable GPM mouse support when $TERM does not happen to contain
2773 "linux", since Gpm_Open() no longer limits its assertion to terminals
2774 that it might handle, e.g., within "screen" in xterm.
2775 + reset mouse file-descriptor when unloading GPM library (report by
2777 + fix build for --disable-leaks --enable-widec --with-termlib
2778 > patch by Juergen Pfeifer:
2779 + use improved initialization for soft-label keys in Ada95 sample code.
2780 + discard internal symbol _nc_slk_format (unused since 20080112).
2781 + move call of slk_paint_info() from _nc_slk_initialize() to
2782 slk_intern_refresh(), improving initialization.
2785 + fix bug in mouse code for GPM from 20080920 changes (reported in
2786 Debian #500103, also Miroslav Lichvar).
2789 + fix shared-library rules for cygwin with tic- and tinfo-libraries.
2790 + fix a memory leak when failure to connect to GPM.
2791 + correct check for notimeout() in wgetch() (report on linux.redhat
2792 newsgroup by FurtiveBertie).
2793 + add an example warning-suppression file for valgrind,
2794 misc/ncurses.supp (based on example from Reuben Thomas)
2797 + change shared-library configuration for OpenBSD, make rpath work.
2798 + build-fixes for using libutf8, e.g., on OpenBSD 3.7
2801 + corrected fix for --enable-weak-symbols (report by Frederic L W
2805 + corrected gcc options for building shared libraries on IRIX64.
2806 + add configure check for awk programs unable to handle big-strings,
2807 use that to improve the default for --enable-big-strings option.
2808 + makefile-fixes for --enable-weak-symbols (report by Frederic L W
2810 + update test/configure script.
2811 + adapt ifdef's from library to make test/view.c build when mbrtowc()
2812 is unavailable, e.g., with HPUX 10.20.
2813 + add configure check for wcsrtombs, mbsrtowcs, which are used in
2814 test/ncurses.c, and use wcstombs, mbstowcs instead if available,
2815 fixing build of ncursew for HPUX 11.00
2818 + fixes to make Ada95 demo_panels() example work.
2819 + modify Ada95 'rain' test program to accept keyboard commands like the
2821 + modify BeOS-specific ifdef's to build on Haiku (patch by Scott
2823 + add configure-check to see if the std namespace is legal for cerr
2824 and endl, to fix a build issue with Tru64.
2825 + consistently use NCURSES_BOOL in lib_gen.c
2826 + filter #line's from lib_gen.c
2827 + change delimiter in MKlib_gen.sh from '%' to '@', to avoid
2828 substitution by IBM xlc to '#' as part of its extensions to digraphs.
2829 + update config.guess, config.sub from
2830 http://savannah.gnu.org/projects/config
2831 (caveat - its maintainer removed support for older Linux systems).
2834 + modify configure check for pthread library to work with OSF/1 5.1,
2835 which uses #define's to associate its header and library.
2836 + use pthread_mutexattr_init() for initializing pthread_mutexattr_t,
2837 makes threaded code work on HPUX 11.23
2838 + fix a bug in demo_menus in freeing menus (cf: 20080804).
2839 + modify configure script for the case where tic library is used (and
2840 possibly renamed) to remove its dependency upon ncurses/ncursew
2841 library (patch by Dr Werner Fink).
2842 + correct manpage for menu_fore() which gave wrong default for
2843 the attribute used to display a selected entry (report by Mike Gran).
2844 + add Eterm-256color, Eterm-88color and rxvt-88color (prompted by
2848 + add configure option --enable-weak-symbols to turn on new feature.
2849 + add configure-check for availability of weak symbols.
2850 + modify linkage with pthread library to use weak symbols so that
2851 applications not linked to that library will not use the mutexes,
2852 etc. This relies on gcc, and may be platform-specific (patch by Dr
2854 + add note to INSTALL to document limitation of renaming of tic library
2855 using the --with-ticlib configure option (report by Dr Werner Fink).
2856 + document (in manpage) why tputs does not detect I/O errors (prompted
2857 by comments by Samuel Thibault).
2858 + fix remaining warnings from Klocwork report.
2861 + modify _nc_panelhook() data to account for a permanent memory leak.
2862 + fix memory leaks in test/demo_menus
2863 + fix most warnings from Klocwork tool (report by Larry Zhou).
2864 + modify configure script CF_XOPEN_SOURCE macro to add case for
2865 "dragonfly" from xterm #236 changes.
2866 + modify configure script --with-hashed-db to let $LIBS override the
2867 search for the db library (prompted by report by Samson Pierre).
2870 + build-fixes for gcc 4.3.1 (changes to gnat "warnings", and C inlining
2874 + build-fix (reports by Christian Ebert, Funda Wang).
2877 + compiler-warning fixes for Solaris.
2880 + use NCURSES_MOUSE_MASK() in definition of BUTTON_RELEASE(), etc., to
2881 make those work properly with the "--enable-ext-mouse" configuration
2883 + improve documentation of build-cc options in INSTALL.
2884 + work-around a bug in gcc 4.2.4 on AIX, which does not pass the
2885 -static/-dynamic flags properly to linker, causing test/bs to
2889 + correct some ifdef's needed for the broken-linker configuration.
2890 + make debugging library's $BAUDRATE feature work for termcap
2892 + make $NCURSES_NO_PADDING feature work for termcap interface (prompted
2893 by comment on FreeBSD mailing list).
2894 + add screen.mlterm terminfo entry -TD
2895 + improve mlterm and mlterm+pcfkeys terminfo entries -TD
2898 + regenerated html documentation.
2899 + expand manpage description of parameters for form_driver() and
2900 menu_driver() (prompted by discussion with Adam Spragg).
2901 + add null-pointer checks for cur_term in baudrate() and
2902 def_shell_mode(), def_prog_mode()
2903 + fix some memory leaks in delscreen() and wide acs.
2906 + modify test/ditto.c to illustrate multi-threaded use_screen().
2907 + change CC_SHARED_OPTS from -KPIC to -xcode=pic32 for Solaris.
2908 + add "-shared" option to MK_SHARED_LIB for gcc on Solaris (report
2912 + finish changes to wgetch(), making it switch as needed to the
2913 window's actual screen when calling wrefresh() and wgetnstr(). That
2914 allows wgetch() to get used concurrently in different threads with
2915 some minor restrictions, e.g., the application should not delete a
2916 window which is being used in a wgetch().
2917 + simplify mutex's, combining the window- and screen-mutex's.
2920 + modify wgetch() to use the screen which corresponds to its window
2921 parameter rather than relying on SP; some dependent functions still
2923 + factor out most use of SP in lib_mouse.c, using parameter.
2924 + add internal _nc_keyname(), replacing keyname() to associate with a
2925 particular SCREEN rather than the global SP.
2926 + add internal _nc_unctrl(), replacing unctrl() to associate with a
2927 particular SCREEN rather than the global SP.
2928 + add internal _nc_tracemouse(), replacing _tracemouse() to eliminate
2929 its associated global buffer _nc_globals.tracemse_buf now in SCREEN.
2930 + add internal _nc_tracechar(), replacing _tracechar() to use SCREEN in
2931 preference to the global _nc_globals.tracechr_buf buffer.
2934 + modify _nc_keypad() to make it switch temporarily as needed to the
2935 screen which must be updated.
2936 + wrap cur_term variable to help make _nc_keymap() thread-safe, and
2937 always set the screen's copy of this variable in set_curterm().
2938 + restore curs_set() state after endwin()/refresh() (report/patch
2942 + modify configure script to note that --enable-ext-colors and
2943 --enable-ext-mouse are not experimental, but extensions from
2945 + corrected manpage description of setcchar() (discussion with
2946 Emanuele Giaquinta).
2947 + fix for adding a non-spacing character at the beginning of a line
2948 (report/patch by Miroslav Lichvar).
2951 + modify screen.* terminfo entries using new screen+fkeys to fix
2952 overridden keys in screen.rxvt (Debian #478094) -TD
2953 + modify internal interfaces to reduce wgetch()'s dependency on the
2955 + simplify some loops with macros each_screen(), each_window() and
2959 + continue modifying test/ditto.c toward making it demonstrate
2960 multithreaded use_screen(), using fifos to pass data between screens.
2961 + fix typo in form.3x (report by Mike Gran).
2964 + add screen.rxvt terminfo entry -TD
2965 + modify tic -f option to format spaces as \s to prevent them from
2966 being lost when that is read back in unformatted strings.
2967 + improve test/ditto.c, using a "talk"-style layout.
2970 + change test/ditto.c to use openpty() and xterm.
2971 + add locks for copywin(), dupwin(), overlap(), overlay() on their
2973 + add locks for initscr() and newterm() on updates to the SCREEN
2975 + finish table in curs_thread.3x manpage.
2978 + begin table in curs_thread.3x manpage describing the scope of data
2979 used by each function (or symbol) for threading analysis.
2980 + add null-pointer checks to setsyx() and getsyx() (prompted by
2981 discussion by Martin v. Lowis and Jeroen Ruigrok van der Werven on
2982 python-dev2 mailing list).
2985 + add null-pointer checks in set_term() and delscreen().
2986 + move _nc_windows into _nc_globals, since windows can be pads, which
2987 are not associated with a particular screen.
2988 + change use_screen() to pass the SCREEN* parameter rather than
2989 stdscr to the callback function.
2990 + force libtool to use tag for 'CC' in case it does not detect this,
2991 e.g., on aix when using CC=powerpc-ibm-aix5.3.0.0-gcc
2992 (report/patch by Michael Haubenwallner).
2993 + override OBJEXT to "lo" when building with libtool, to work on
2994 platforms such as AIX where libtool may use a different suffix for
2995 the object files than ".o" (report/patch by Michael Haubenwallner).
2996 + add configure --with-pthread option, for building with the POSIX
3000 + fill in extended-color pair two more places in wbkgrndset() and
3001 waddch_nosync() (prompted by Sedeno's patch).
3002 + fill in extended-color pair in _nc_build_wch() to make colors work
3003 for wide-characters using extended-colors (patch by Alejandro R
3005 + add x/X toggles to ncurses.c C color test to test/demo
3006 wide-characters with extended-colors.
3007 + add a/A toggles to ncurses.c c/C color tests.
3008 + modify test/ditto.c to use use_screen().
3009 + finish modifying test/rain.c to demonstrate threads.
3012 + start modifying test/rain.c for threading demo.
3013 + modify test/ncurses.c to make 'f' test accept the f/F/b/F/</> toggles
3014 that the 'F' accepts.
3015 + modify test/worm.c to show trail in reverse-video when other threads
3016 are working concurrently.
3017 + fix a deadlock from improper nesting of mutexes for windowlist and
3021 + fixes from 20080223 resolved issue with mutexes; change to use
3022 recursive mutexes to fix memory leak in delwin() as called from
3023 _nc_free_and_exit().
3026 + fix a size-difference in _nc_globals which caused hanging of mutex
3027 lock/unlock when termlib was built separately.
3030 + avoid using nanosleep() in threaded configuration since that often
3031 is implemented to suspend the entire process.
3034 + update test programs to build/work with various UNIX curses for
3035 comparisons. This was to reinvestigate statement in X/Open curses
3036 that insnstr and winsnstr perform wrapping. None of the Unix-branded
3037 implementations do this, as noted in manpage (cf: 20040228).
3040 + modify _nc_setupscreen() to set the legacy-coding value the same
3041 for both narrow/wide models. It had been set only for wide model,
3042 but is needed to make unctrl() work with locale in the narrow model.
3043 + improve waddch() and winsch() handling of EILSEQ from mbrtowc() by
3044 using unctrl() to display illegal bytes rather than trying to append
3045 further bytes to make up a valid sequence (reported by Andrey A
3047 + modify unctrl() to check codes in 128-255 range versus isprint().
3048 If they are not printable, and locale was set, use a "M-" or "~"
3052 + improve threading in test/worm.c (wrap refresh calls, and KEY_RESIZE
3053 handling). Now it hangs in napms(), no matter whether nanosleep()
3054 or poll() or select() are used on Linux.
3057 + fixes to build with --disable-ext-funcs
3058 + add manpage for use_window and use_screen.
3059 + add set_tabsize() and set_escdelay() functions.
3062 + remove recursive-mutex definitions, finish threading demo for worm.c
3063 + remove a redundant adjustment of lines in resizeterm.c's
3064 adjust_window() which caused occasional misadjustment of stdscr when
3068 + several improvements to terminfo entries based on xterm #230 -TD
3069 + modify MKlib_gen.sh to handle keyname/key_name prototypes, so the
3070 "link_test" builds properly.
3071 + fix for toe command-line options -u/-U to ensure filename is given.
3072 + fix allocation-size for command-line parsing in infocmp from 20070728
3073 (report by Miroslav Lichvar)
3074 + improve resizeterm() by moving ripped-off lines, and repainting the
3075 soft-keys (report by Katarina Machalkova)
3076 + add clarification in wclear's manpage noting that the screen will be
3077 cleared even if a subwindow is cleared (prompted by Christer Enfors
3079 + change test/ncurses.c soft-key tests to work with KEY_RESIZE.
3082 + continue implementing support for threading demo by adding mutex
3086 + add several functions to C++ binding which wrap C functions that
3087 pass a WINDOW* parameter (request by Chris Lee).
3090 + add note about configure options needed for Berkeley database to the
3092 + improve checks for version of Berkeley database libraries.
3093 + amend fix for rpath to not modify LDFLAGS if the platform has no
3094 applicable transformation (report by Christian Ebert, cf: 20071124).
3097 + modify configure option --with-hashed-db to accept a parameter which
3098 is the install-prefix of a given Berkeley Database (prompted by
3099 pierre4d2 comments).
3100 + rewrite wrapper for wcrtomb(), making it work on Solaris. This is
3101 used in the form library to determine the length of the buffer needed
3102 by field_buffer (report by Alfred Fung).
3103 + remove unneeded window-parameter from C++ binding for wresize (report
3107 + modify the support for filesystems which do not support mixed-case to
3108 generate 2-character (hexadecimal) codes for the lower-level of the
3109 filesystem terminfo database (request by Michail Vidiassov).
3110 + add configure option --enable-mixed-case, to allow overriding the
3111 configure script's check if the filesystem supports mixed-case
3113 + add wresize() to C++ binding (request by Chris Lee).
3114 + define NCURSES_EXT_FUNCS and NCURSES_EXT_COLORS in curses.h to make
3115 it simpler to tell if the extended functions and/or colors are
3119 + update memory-leak checks for changes to names.c and codes.c
3120 + correct acsc strings in h19, z100 (patch by Benjamin C W Sittler).
3123 + continue implementing support for threading demo by adding mutex
3125 + add mrxvt terminfo entry, add/fix xterm building blocks for modified
3127 + compile with FreeBSD "contemporary" TTY interface (patch by
3131 + modify makefile rules to allow clear, tput and tset to be built
3132 without libtic. The other programs (infocmp, tic and toe) rely on
3134 + add/modify null-pointer checks in several functions for SP and/or
3135 the WINDOW* parameter (report by Thorben Krueger).
3136 + fixes for field_buffer() in formw library (see Redhat #310071,
3137 patches by Miroslav Lichvar).
3138 + improve performance of NCURSES_CHAR_EQ code (patch by Miroslav
3140 + update/improve mlterm and rxvt terminfo entries, e.g., for
3141 the modified cursor- and keypad-keys -TD
3144 + add code to curses.priv.h ifdef'd with NCURSES_CHAR_EQ, which
3145 changes the CharEq() macro to an inline function to allow comparing
3146 cchar_t struct's without comparing gaps in a possibly unpacked
3147 memory layout (report by Miroslav Lichvar).
3150 + add new functions to lib_trace.c to setup mutex's for the _tracef()
3151 calls within the ncurses library.
3152 + for the reentrant model, move _nc_tputs_trace and _nc_outchars into
3154 + start modifying test/worm.c to provide threading demo (incomplete).
3155 + separated ifdef's for some BSD-related symbols in tset.c, to make
3156 it compile on LynxOS (report by Greg Gemmer).
3158 + modify Ada95/gen/Makefile to use shlib script, to simplify building
3159 shared-library configuration on platforms lacking rpath support.
3160 + build-fix for Ada95/src/Makefile to reflect changed dependency for
3161 the terminal-interface-curses-aux.adb file which is now generated.
3162 + restructuring test/worm.c, for use_window() example.
3165 + add use_window() and use_screen() functions, to develop into support
3166 for threaded library (incomplete).
3167 + fix typos in man/curs_opaque.3x which kept the install script from
3168 creating symbolic links to two aliases created in 20070818 (report by
3172 + remove a spurious newline from output of html.m4, which caused links
3173 for Ada95 html to be incorrect for the files generated using m4.
3174 + start investigating mutex's for SCREEN manipulation (incomplete).
3175 + minor cleanup of codes.c/names.c for --enable-const
3176 + expand/revise "Routine and Argument Names" section of ncurses manpage
3177 to address report by David Givens in newsgroup discussion.
3178 + fix interaction between --without-progs/--with-termcap configure
3179 options (report by Michail Vidiassov).
3180 + fix typo in "--disable-relink" option (report by Michail Vidiassov).
3183 + fix a sign-extension bug in infocmp's repair_acsc() function
3185 + fix old configure script bug which prevented "--disable-warnings"
3186 option from working (patch by Mike Frysinger).
3189 + add 9term terminal description (request by Juhapekka Tolvanen) -TD
3190 + modify comp_hash.c's string output to avoid misinterpreting a null
3191 "\0" followed by a digit.
3192 + modify MKnames.awk and MKcodes.awk to support big-strings.
3193 This only applies to the cases (broken linker, reentrant) where
3194 the corresponding arrays are accessed via wrapper functions.
3195 + split MKnames.awk into two scripts, eliminating the shell redirection
3196 which complicated the make process and also the bogus timestamp file
3197 which was introduced to fix "make -j".
3198 + add test/test_opaque.c, test/test_arrays.c
3199 + add wgetscrreg() and wgetparent() for applications that may need it
3200 when NCURSES_OPAQUE is defined (prompted by Bryan Christ).
3203 + amend treatment of infocmp "-r" option to retain the 1023-byte limit
3204 unless "-T" is given (cf: 981017).
3205 + modify comp_captab.c generation to use big-strings.
3206 + make _nc_capalias_table and _nc_infoalias_table private accessed via
3207 _nc_get_alias_table() since the tables are used only within the tic
3209 + modify configure script to skip Intel compiler in CF_C_INLINE.
3210 + make _nc_info_hash_table and _nc_cap_hash_table private accessed via
3211 _nc_get_hash_table() since the tables are used only within the tic
3215 + make _nc_capalias_table and _nc_infoalias_table private, accessed via
3216 _nc_get_alias_table() since they are used only by parse_entry.c
3217 + make _nc_key_names private since it is used only by lib_keyname.c
3218 + add --disable-big-strings configure option to control whether
3219 unctrl.c is generated using the big-string optimization - which may
3220 use strings longer than supported by a given compiler.
3221 + reduce relocation tables for tic, infocmp by changing type of
3222 internal hash tables to short, and make those private symbols.
3223 + eliminate large fixed arrays from progs/infocmp.c
3226 + change winnstr() to stop at the end of the line (cf: 970315).
3227 + add test/test_get_wstr.c
3228 + add test/test_getstr.c
3229 + add test/test_inwstr.c
3230 + add test/test_instr.c
3233 + restore a call to obtain screen-size in _nc_setupterm(), which
3234 is used in tput and other non-screen applications via setupterm()
3235 (Debian #433357, reported by Florent Bayle, Christian Ohm,
3239 + add test/savescreen.c test-program
3240 + add check to trace-file open, if the given name is a directory, add
3241 ".log" to the name and try again.
3242 + add konsole-256color entry -TD
3243 + add extra gcc warning options from xterm.
3244 + minor fixes for ncurses/hashmap test-program.
3245 + modify configure script to quiet c++ build with libtool when the
3246 --disable-echo option is used.
3247 + modify configure script to disable ada95 if libtool is selected,
3248 writing a warning message (addresses FreeBSD #114493).
3249 + update config.guess, config.sub
3252 + add continuous-move "M" to demo_panels to help test refresh changes.
3253 + improve fix for refresh of window on top of multi-column characters,
3254 taking into account some split characters on left/right window
3258 + add "widec" row to _tracedump() output to help diagnose remaining
3259 problems with multi-column characters.
3260 + partial fix for refresh of window on top of multi-column characters
3261 which are partly overwritten (report by Sadrul H Chowdhury).
3262 + ignore A_CHARTEXT bits in vidattr() and vid_attr(), in case
3263 multi-column extension bits are passed there.
3264 + add setlocale() call to demo_panels.c, needed for wide-characters.
3265 + add some output flags to _nc_trace_ttymode to help diagnose a bug
3266 report by Larry Virden, i.e., ONLCR, OCRNL, ONOCR and ONLRET,
3269 + add test/demo_panels.c
3270 + implement opaque version of setsyx() and getsyx().
3273 + corrected xterm+pcf2 terminfo modifiers for F1-F4, to match xterm
3275 + split-out key_name() from MKkeyname.awk since it now depends upon
3276 wunctrl() which is not in libtinfo (report by Rong-En Fan).
3279 + add test/key_name.c
3280 + add stdscr cases to test/inchs.c and test/inch_wide.c
3281 + update test/configure
3282 + correct formatting of DEL (0x7f) in _nc_vischar().
3283 + null-terminate result of wunctrl().
3284 + add null-pointer check in key_name() (report by Andreas Krennmair,
3288 + adapt mouse-handling code from menu library in form-library
3289 (discussion with Clive Nicolson).
3290 + add a modification of test/dots.c, i.e., test/dots_mvcur.c to
3291 illustrate how to use mvcur().
3292 + modify wide-character flavor of SetAttr() to preserve the
3293 WidecExt() value stored in the .attr field, e.g., in case it
3294 is overwritten by chgat (report by Aleksi Torhamo).
3295 + correct buffer-size for _nc_viswbuf2n() (report by Aleksi Torhamo).
3296 + build-fixes for Solaris 2.6 and 2.7 (patch by Peter O'Gorman).
3299 + modify keyname() to use "^X" form only if meta() has been called, or
3300 if keyname() is called without initializing curses, e.g., via
3301 initscr() or newterm() (prompted by LinuxBase #1604).
3302 + document some portability issues in man/curs_util.3x
3303 + add a shadow copy of TTY buffer to _nc_prescreen to fix applications
3304 broken by moving that data into SCREEN (cf: 20061230).
3307 + add 'O' (wide-character panel test) in ncurses.c to demonstrate a
3308 problem reported by Sadrul H Chowdhury with repainting parts of
3310 + modify slk_init() so that if there are preceding calls to
3311 ripoffline(), those affect the available lines for soft-keys (adapted
3312 from patch by Clive Nicolson).
3313 + document some portability issues in man/curs_getyx.3x
3316 + fix a bug in Ada95/samples/ncurses which caused a variable to
3317 become uninitialized in the "b" test.
3318 + fix Ada95/gen/Makefile.in adahtml rule to account for recent
3319 movement of files, fix a few incorrect manpage references in the
3321 + add Ada95 binding to _nc_freeall() as Curses_Free_All to help with
3323 + correct some functions in Ada95 binding which were using return value
3324 from C where none was returned: idcok(), immedok() and wtimeout().
3325 + amend recent changes for Ada95 binding to make it build with
3326 Cygwin's linker, e.g., with configure options
3327 --enable-broken-linker --with-ticlib
3330 + add a configure check for gcc's options for inlining, use that to
3331 quiet a warning message where gcc's default behavior changed from
3333 + improve warning message when checking if GPM is linked to curses
3334 library by not warning if its use of "wgetch" is via a weak symbol.
3335 + add loader options when building with static libraries to ensure that
3336 an installed shared library for ncurses does not conflict. This is
3337 reported as problem with Tru64, but could affect other platforms
3338 (report Martin Mokrejs, analysis by Tim Mooney).
3339 + fix build on cygwin after recent ticlib/termlib changes, i.e.,
3340 + adjust TINFO_SUFFIX value to work with cygwin's dll naming
3341 + revert a change from 20070303 which commented out dependency of
3342 SHLIB_LIST in form/menu/panel/c++ libraries.
3343 + fix initialization of ripoff stack pointer (cf: 20070421).
3346 + move most static variables into structures _nc_globals and
3347 _nc_prescreen, to simplify storage.
3348 + add/use configure script macro CF_SIG_ATOMIC_T, use the corresponding
3349 type for data manipulated by signal handlers (prompted by comments
3350 in mailing.openbsd.bugs newsgroup).
3351 + modify CF_WITH_LIBTOOL to allow one to pass options such as -static
3352 to the libtool create- and link-operations.
3355 + fix whitespace in curs_opaque.3x which caused a spurious ';' in
3356 the installed aliases (report by Peter Santoro).
3357 + fix configure script to not try to generate adacurses-config when
3358 Ada95 tree is not built.
3361 + add man/curs_legacy.3x, man/curs_opaque.3x
3362 + fix acs_map binding for Ada95 when --enable-reentrant is used.
3363 + add adacurses-config to the Ada95 install, based on version from
3364 FreeBSD port, in turn by Juergen Pfeifer in 2000 (prompted by
3365 comment on comp.lang.ada newsgroup).
3366 + fix includes in c++ binding to build with Intel compiler
3368 + update install rule in Ada95 to use mkdirs.sh
3369 > other fixes prompted by inspection for Coverity report:
3370 + modify ifdef's for c++ binding to use try/catch/throw statements
3371 + add a null-pointer check in tack/ansi.c request_cfss()
3372 + fix a memory leak in ncurses/base/wresize.c
3373 + corrected check for valid memu/meml capabilities in
3374 progs/dump_entry.c when handling V_HPUX case.
3375 > fixes based on Coverity report:
3376 + remove dead code in test/bs.c
3377 + remove dead code in test/demo_defkey.c
3378 + remove an unused assignment in progs/infocmp.c
3379 + fix a limit check in tack/ansi.c tools_charset()
3380 + fix tack/ansi.c tools_status() to perform the VT320/VT420
3381 tests in request_cfss(). The function had exited too soon.
3382 + fix a memory leak in tic.c's make_namelist()
3383 + fix a couple of places in tack/output.c which did not check for EOF.
3384 + fix a loop-condition in test/bs.c
3385 + add index checks in lib_color.c for color palettes
3386 + add index checks in progs/dump_entry.c for version_filter() handling
3388 + fix a possible null-pointer dereference in copywin()
3389 + fix a possible null-pointer dereference in waddchnstr()
3390 + add a null-pointer check in _nc_expand_try()
3391 + add a null-pointer check in tic.c's make_namelist()
3392 + add a null-pointer check in _nc_expand_try()
3393 + add null-pointer checks in test/cardfile.c
3394 + fix a double-free in ncurses/tinfo/trim_sgr0.c
3395 + fix a double-free in ncurses/base/wresize.c
3396 + add try/catch block to c++/cursesmain.cc
3399 + modify Ada95 binding to build with --enable-reentrant by wrapping
3400 global variables (bug: acs_map does not yet work).
3401 + modify Ada95 binding to use the new access-functions, allowing it
3402 to build/run when NCURSES_OPAQUE is set.
3403 + add access-functions and macros to return properties of the WINDOW
3404 structure, e.g., when NCURSES_OPAQUE is set.
3405 + improved install-sh's quoting.
3406 + use mkdirs.sh rather than mkinstalldirs, e.g., to use fixes from
3410 + eliminate part of the direct use of WINDOW data from Ada95 interface.
3411 + fix substitutions for termlib filename to make configure option
3412 --enable-reentrant work with --with-termlib.
3413 + change a constructor for NCursesWindow to allow compiling with
3414 NCURSES_OPAQUE set, since we cannot pass a reference to
3418 + ignore --with-chtype=unsigned since unsigned is always added to
3419 the type in curses.h; do the same for --with-mmask-t.
3420 + change warning regarding --enable-ext-colors and wide-character
3421 in the configure script to an error.
3422 + tweak error message in CF_WITH_LIBTOOL to distinguish other programs
3423 such as Darwin's libtool program (report by Michail Vidiassov)
3424 + modify edit_man.sh to allow for multiple substitutions per line.
3425 + set locale in misc/ncurses-config.in since it uses a range
3426 + change permissions libncurses++.a install (report by Michail
3428 + corrected length of temporary buffer in wide-character version
3429 of set_field_buffer() (related to report by Bryan Christ).
3432 + fix mk-1st.awk script install_shlib() function, broken in 20070224
3433 changes for cygwin (report by Michail Vidiassov).
3436 + increase size of array in _nc_visbuf2n() to make "tic -v" work
3437 properly in its similar_sgr() function (report/analysis by Peter
3439 + add --enable-reentrant configure option for ongoing changes to
3440 implement a reentrant version of ncurses:
3441 + libraries are suffixed with "t"
3442 + wrap several global variables (curscr, newscr, stdscr, ttytype,
3443 COLORS, COLOR_PAIRS, COLS, ESCDELAY, LINES and TABSIZE) as
3444 functions returning values stored in SCREEN or cur_term.
3445 + move some initialization (LINES, COLS) from lib_setup.c,
3446 i.e., setupterm() to _nc_setupscreen(), i.e., newterm().