aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2013-10-03 16:56:12 +0100
committerThomas <thomas@xteddy.org>2013-10-11 14:36:28 +0100
commit5b065e93b35cb5785b7a370a0ac4478b5e7ea698 (patch)
tree25232da3ddc3421374f1998094f9a690ba727c23
parentd3f37566e2f111f2019edb8c07e39dcae15c3574 (diff)
downloadrtmux-5b065e93b35cb5785b7a370a0ac4478b5e7ea698.tar.gz
rtmux-5b065e93b35cb5785b7a370a0ac4478b5e7ea698.tar.bz2
rtmux-5b065e93b35cb5785b7a370a0ac4478b5e7ea698.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 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
)