summaryrefslogtreecommitdiff
path: root/examples/autoconf/BASH_CHECK_LIB_TERMCAP
diff options
context:
space:
mode:
Diffstat (limited to 'examples/autoconf/BASH_CHECK_LIB_TERMCAP')
-rw-r--r--examples/autoconf/BASH_CHECK_LIB_TERMCAP3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/autoconf/BASH_CHECK_LIB_TERMCAP b/examples/autoconf/BASH_CHECK_LIB_TERMCAP
index 5e89551..0a09883 100644
--- a/examples/autoconf/BASH_CHECK_LIB_TERMCAP
+++ b/examples/autoconf/BASH_CHECK_LIB_TERMCAP
@@ -12,7 +12,8 @@ AC_CACHE_VAL(bash_cv_termcap_lib,
[AC_CHECK_LIB(tinfo, tgetent, bash_cv_termcap_lib=libtinfo,
[AC_CHECK_LIB(curses, tgetent, bash_cv_termcap_lib=libcurses,
[AC_CHECK_LIB(ncurses, tgetent, bash_cv_termcap_lib=libncurses,
- bash_cv_termcap_lib=gnutermcap)])])])])])
+ [AC_CHECK_LIB(ncursesw, tgetent, bash_cv_termcap_lib=libncursesw,
+ bash_cv_termcap_lib=gnutermcap)])])])])])])
if test "X$_bash_needmsg" = "Xyes"; then
AC_MSG_CHECKING(which library has the termcap functions)
fi