From 796974ddf65604f0da4b53039f11ebf886957cc9 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 186d7536..68c50fba 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 )