From 5b065e93b35cb5785b7a370a0ac4478b5e7ea698 Mon Sep 17 00:00:00 2001 From: Thomas Adam Date: Thu, 3 Oct 2013 16:56:12 +0100 Subject: [PATCH] Check setupterm() in libtinfo also Some ncurses packages have build time configuration options to separate its different parts into separate libraries. Some Linux distributions in particular separate out the terminfo routines in to libtinfo. This change teaches configure that setupterm() can also be found there. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index b047eef2..10588335 100644 --- a/configure.ac +++ b/configure.ac @@ -135,7 +135,7 @@ fi # Look for curses. AC_SEARCH_LIBS( setupterm, - [terminfo curses ncurses], + [terminfo curses ncurses tinfo], found_curses=yes, found_curses=no )