1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-11-19 13:33:52 +01:00

12239: prefer curses to termcap on solaris

This commit is contained in:
Peter Stephenson 2000-07-20 16:17:57 +00:00
parent aa78d39811
commit 100f25b97f
2 changed files with 8 additions and 2 deletions

@ -1,3 +1,8 @@
2000-07-20 Peter Stephenson <pws@cambridgesiliconradio.com>
* 12239: Fr. Br. George (George V Kouryachy), adapted:
configure.in: prefer curses to termcap on solaris.
2000-07-20 Bart Schaefer <schaefer@zsh.org> 2000-07-20 Bart Schaefer <schaefer@zsh.org>
* 12326: Completion/User/_cvs: Discard stderr of a command subst. * 12326: Completion/User/_cvs: Discard stderr of a command subst.

@ -513,9 +513,10 @@ AC_CHECK_LIB(c, printf)
AC_CHECK_LIB(m, pow) AC_CHECK_LIB(m, pow)
dnl Prefer BSD termcap library to SysV curses library, except on certain dnl Prefer BSD termcap library to SysV curses library, except on certain
dnl versions of AIX and HP-UX. dnl SYSV-derived systems.
case "$host_os" in case "$host_os" in
aix*|hpux10.*|hpux11.*) termcap_curses_order="curses ncurses termcap" ;; aix*|hpux10.*|hpux11.*|solaris*)
termcap_curses_order="curses ncurses termcap" ;;
*) termcap_curses_order="termcap curses ncurses" ;; *) termcap_curses_order="termcap curses ncurses" ;;
esac esac