diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2013-08-12 10:40:11 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2013-08-12 10:40:11 +0000 |
commit | 3729d7d62b9973baa60d253fe0463d6d607dd815 (patch) | |
tree | 5fbd3c29ccb29fc17ee40ed64593bd7bd23feacb /autoconf | |
parent | dfb5ceae90c016ba4ca8a7f1a3b79c360d888f30 (diff) | |
download | external_llvm-3729d7d62b9973baa60d253fe0463d6d607dd815.zip external_llvm-3729d7d62b9973baa60d253fe0463d6d607dd815.tar.gz external_llvm-3729d7d62b9973baa60d253fe0463d6d607dd815.tar.bz2 |
Remove all checking for the various terminfo headers (term.h and
curses.h). Finding these headers is next to impossible. For example, on
Debian systems libtinfo-dev provides the terminfo reading library we
want, but *not* term.h. For the header, you have to use libncurses-dev.
And libncursesw-dev provides a *different* term.h in a different
location!
These headers aren't worth it. We want two functions the signatures of
which are clearly spec'ed in sys-v and other documentation. Just declare
them ourselves and call them. This should fix some debian builders and
provide better support for "minimal" debian systems that do want color
autodetection.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188165 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/configure.ac | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 127eb6f..ceb0b9a 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -1573,11 +1573,6 @@ else AC_SUBST(HAVE_LIBZ, 0) fi -dnl Try to find a suitable curses header. -if test "$llvm_cv_enable_terminfo" = "yes" ; then - AC_CHECK_HEADERS([term.h curses.h ncurses.h ncursesw.h ncurses/curses.h ncursesw/curses.h]) -fi - dnl Try to find ffi.h. if test "$llvm_cv_enable_libffi" = "yes" ; then AC_CHECK_HEADERS([ffi.h ffi/ffi.h]) |