1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-24 10:38:38 +00:00

Port to OpenIndiana

Problem reported by Nelson H. F. Beebe (Bug#28893).
Also see Bug#23748, Bug#9736, and Bug#5735.
* configure.ac (tputs_library): Prefer libcurses to libtermcap,
since OpenIndiana libtermcap lacks tparm.
This commit is contained in:
Paul Eggert 2017-10-22 22:44:42 -07:00
parent a012ec766c
commit 6360611457

View File

@ -4035,7 +4035,7 @@ AC_CACHE_CHECK([for library containing tputs], [emacs_cv_tputs_lib],
else
# Maybe curses should be tried earlier?
# See https://debbugs.gnu.org/9736#35
for tputs_library in '' tinfo ncurses terminfo termcap curses; do
for tputs_library in '' tinfo ncurses terminfo curses termcap; do
OLIBS=$LIBS
if test -z "$tputs_library"; then
emacs_cv_tputs_lib='none required'