about summary refs log tree commit diff
path: root/configure.in
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2000-07-20 16:17:57 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2000-07-20 16:17:57 +0000
commit100f25b97f26b6d7b94e98be1419aa1abd89b11a (patch)
tree73536a5437c7a7b52093c52dd166520e870f5248 /configure.in
parentaa78d3981141a322cdff25c19eef83ba7f08ce2f (diff)
downloadzsh-100f25b97f26b6d7b94e98be1419aa1abd89b11a.tar.gz
zsh-100f25b97f26b6d7b94e98be1419aa1abd89b11a.tar.xz
zsh-100f25b97f26b6d7b94e98be1419aa1abd89b11a.zip
12239: prefer curses to termcap on solaris
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 3 insertions, 2 deletions
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