summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authorJoerg Sonnenberger <joerg@bec.de>2013-08-17 11:06:00 +0000
committerJoerg Sonnenberger <joerg@bec.de>2013-08-17 11:06:00 +0000
commita915b410dfbb47a77e3936c987105b8ff459d448 (patch)
tree88c3b7c208783581b8c27c14ff43b64ed5b357f0 /autoconf
parent190673610f41be171589be8a0263d8c10a8f3edf (diff)
downloadllvm-a915b410dfbb47a77e3936c987105b8ff459d448.tar.gz
llvm-a915b410dfbb47a77e3936c987105b8ff459d448.tar.bz2
llvm-a915b410dfbb47a77e3936c987105b8ff459d448.tar.xz
Recognize NetBSD's terminfo implementation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188606 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index ceb0b9a4a0..31edd35792 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -1392,7 +1392,7 @@ AC_SEARCH_LIBS(clock_gettime,rt)
dnl The curses library is optional; used for querying terminal info
if test "$llvm_cv_enable_terminfo" = "yes" ; then
dnl We need the has_color functionality in curses for it to be useful.
- AC_SEARCH_LIBS(setupterm,tinfo curses ncurses ncursesw,
+ AC_SEARCH_LIBS(setupterm,tinfo terminfo curses ncurses ncursesw,
AC_DEFINE([HAVE_TERMINFO],[1],
[Define if the setupterm() function is supported this platform.]))
fi