aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2013-10-03 16:56:12 +0100
committerThomas Adam <thomas@xteddy.org>2013-10-05 12:44:29 +0100
commit796974ddf65604f0da4b53039f11ebf886957cc9 (patch)
treeb06540d8e5ff81b7571558b1563563d65ff14595
parent75f5b3dab669ab79a6ff11f70ff75589fc1946c5 (diff)
downloadrtmux-796974ddf65604f0da4b53039f11ebf886957cc9.tar.gz
rtmux-796974ddf65604f0da4b53039f11ebf886957cc9.tar.bz2
rtmux-796974ddf65604f0da4b53039f11ebf886957cc9.zip
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.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
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
)