From 4b121e617bf726a1bcd49764baa6f014d01a8b2b Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Sat, 30 Aug 2003 19:17:13 +0000 Subject: zsh-users/6493: search tinfo library for curses --- ChangeLog | 9 +++++++-- zshconfig.ac | 6 +++--- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0d331b6aa..c95e3294d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-08-30 Peter Stephenson + + * c.f. somewhat terse reference in zsh-users/6493: + use tinfo library for curses if not found elsewhere. + 2003-08-28 Oliver Kiddle * Completion/Unix/Command/_gcc, Completion/Unix/Command/_mh, @@ -267,7 +272,7 @@ Completion/Unix/Command/_ssh: get hostname from IPREFIX instead of words[CURRENT] to avoid quote characters - * MichaÅ‚ Politowski: users/6080: Completion/Unix/Command/_ssh: + * Michał Politowski: users/6080: Completion/Unix/Command/_ssh: remove one level of quoting on files before using with remote ls 2003-05-07 Peter Stephenson @@ -629,7 +634,7 @@ * unposted: Completion/Unix/Command/_lynx: minor bug fix (missing -g) - * Thomas Köhler: 17610: Completion/Unix/Command/_ssh: also pass + * Thomas Köhler: 17610: Completion/Unix/Command/_ssh: also pass through -F option * 17607: Completion/Unix/Command/_ssh: pass through options such as diff --git a/zshconfig.ac b/zshconfig.ac index 3fbfa2806..3343f896a 100644 --- a/zshconfig.ac +++ b/zshconfig.ac @@ -559,15 +559,15 @@ dnl SYSV-derived systems. AC_ARG_WITH(curses-terminfo, [ --with-curses-terminfo use terminfo support from curses library], [if test x$withval = xyes; then - termcap_curses_order="curses ncurses termcap" + termcap_curses_order="tinfo curses ncurses termcap" AC_SEARCH_LIBS(tigetstr, [$termcap_curses_order]) else - termcap_curses_order="termcap curses ncurses" + termcap_curses_order="tinfo termcap curses ncurses" fi], [case "$host_os" in hpux10.*|hpux11.*|solaris*) termcap_curses_order="curses ncurses termcap" ;; - *) termcap_curses_order="termcap curses ncurses" ;; + *) termcap_curses_order="tinfo termcap curses ncurses" ;; esac])dnl AC_SEARCH_LIBS(tgetent, [$termcap_curses_order]) -- cgit 1.4.1