Package: ncurses / 5.9-10

Metadata

Package Version Patches format
ncurses 5.9-10 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
00 terminfo update.diff | (download)

misc/terminfo.src | 1215 873 + 342 - 0 !
1 file changed, 873 insertions(+), 342 deletions(-)

 update terminfo entries
 Update terminfo entries to the 20120602 upstream patchlevel
02 debian backspace.diff | (download)

misc/terminfo.src | 6 3 + 3 - 0 !
1 file changed, 3 insertions(+), 3 deletions(-)

 fix backspace key description in some terminfo entries
Bug-Debian: http://bugs.debian.org/237997
Bug-Debian: http://bugs.debian.org/602300
03 debian ncursesconfig omit L.diff | (download)

misc/ncurses-config.in | 4 2 + 2 - 0 !
1 file changed, 2 insertions(+), 2 deletions(-)

 omit -l part from ncurses5{w,}-config output
 "ncurses5-config --libs" includes a "-L" part which is not needed
 since the library is installed in a directory in the default linker
 search path.  The value is also wrong if ncurses-bin is of a
04 fix tabset directory.diff | (download)

misc/Makefile.in | 2 1 + 1 - 0 !
misc/gen_edit.sh | 4 2 + 2 - 0 !
2 files changed, 3 insertions(+), 3 deletions(-)

 set tabset directory to /usr/share/tabset
 By default tun-tic.sh assumes the tabset directory is a sibling to
 the default terminfo directory, which is wrong the tabset files are
 installed into /usr/share/tabset, but the default terminfo directory
 should be /etc/terminfo rather than /usr/share/terminfo. This patch
 corrects that assumption.
05 fix poll test.diff | (download)

aclocal.m4 | 12 10 + 2 - 0 !
configure | 628 318 + 310 - 0 !
2 files changed, 328 insertions(+), 312 deletions(-)

 correct cf_func_poll test
 There were actually two problems with the test: it did not check
 whether standard input was redirected, and if poll() returned a
 positive result, the test inadvertently failed.  Building ncurses with
 stdin redirected to /dev/null (as under sbuild) would thus result in
 select() rather than poll() being used in ncurses/tty/tty_update.c.