aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenrik Nord <[email protected]>2014-01-21 15:04:50 +0100
committerHenrik Nord <[email protected]>2014-01-21 15:04:53 +0100
commit58bdc6e7b509aec1a42458696fd73e700dc4b7d9 (patch)
tree54bbb2722cea13c713b57012c407293ae27ff751
parent203fb6ba7d332d6b5365a411b670a5afd6b5a1cd (diff)
parent8c10604c7d278c28b32feb67c2c8cf207f5bd305 (diff)
downloadotp-58bdc6e7b509aec1a42458696fd73e700dc4b7d9.tar.gz
otp-58bdc6e7b509aec1a42458696fd73e700dc4b7d9.tar.bz2
otp-58bdc6e7b509aec1a42458696fd73e700dc4b7d9.zip
Merge branch 'djc/tinfo-ncurses'
* djc/tinfo-ncurses: Add support for the separate tinfo library from ncurses OTP-11590
-rw-r--r--erts/configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/configure.in b/erts/configure.in
index 3b4c46d4a5..cf21d0cbfc 100644
--- a/erts/configure.in
+++ b/erts/configure.in
@@ -1336,7 +1336,7 @@ TERMCAP_LIB=
if test "x$with_termcap" != "xno" &&
test "X$host" != "Xwin32"; then
# try these libs
- termcap_libs="ncurses curses termcap termlib"
+ termcap_libs="tinfo ncurses curses termcap termlib"
for termcap_lib in $termcap_libs; do
AC_CHECK_LIB($termcap_lib, tgetent, TERMCAP_LIB="-l$termcap_lib")