about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog9
-rw-r--r--zshconfig.ac6
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  <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
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])