1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-12-28 16:15:02 +01:00

zsh-users/6493: search tinfo library for curses

This commit is contained in:
Peter Stephenson 2003-08-30 19:17:13 +00:00
parent e8d542a9be
commit 4b121e617b
2 changed files with 10 additions and 5 deletions

View file

@ -1,3 +1,8 @@
2003-08-30 Peter Stephenson <pws@pwstephenson.fsnet.co.uk>
* c.f. somewhat terse reference in zsh-users/6493:
use tinfo library for curses if not found elsewhere.
2003-08-28 Oliver Kiddle <opk@zsh.org>
* 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 <pws@csr.com>
@ -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

View file

@ -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])