diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2000-07-20 16:17:57 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2000-07-20 16:17:57 +0000 |
commit | 100f25b97f26b6d7b94e98be1419aa1abd89b11a (patch) | |
tree | 73536a5437c7a7b52093c52dd166520e870f5248 | |
parent | aa78d3981141a322cdff25c19eef83ba7f08ce2f (diff) | |
download | zsh-100f25b97f26b6d7b94e98be1419aa1abd89b11a.tar.gz zsh-100f25b97f26b6d7b94e98be1419aa1abd89b11a.tar.xz zsh-100f25b97f26b6d7b94e98be1419aa1abd89b11a.zip |
12239: prefer curses to termcap on solaris
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 3cbb900a0..448a8d8a7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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> * 12326: Completion/User/_cvs: Discard stderr of a command subst. diff --git a/configure.in b/configure.in index 339baeb03..da63da90f 100644 --- a/configure.in +++ b/configure.in @@ -513,9 +513,10 @@ AC_CHECK_LIB(c, printf) AC_CHECK_LIB(m, pow) 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 - 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" ;; esac |