diff options
author | Henrik Nord <[email protected]> | 2014-01-21 15:04:50 +0100 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2014-01-21 15:04:53 +0100 |
commit | 58bdc6e7b509aec1a42458696fd73e700dc4b7d9 (patch) | |
tree | 54bbb2722cea13c713b57012c407293ae27ff751 | |
parent | 203fb6ba7d332d6b5365a411b670a5afd6b5a1cd (diff) | |
parent | 8c10604c7d278c28b32feb67c2c8cf207f5bd305 (diff) | |
download | otp-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.in | 2 |
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") |