Skip to content

Commit 531c74e

Browse files
eggertnpostavs
authored andcommitted
Port to platforms where tputs is in libtinfow
* configure.ac (tputs_library): Also try tinfow, ncursesw (Bug#33977). (cherry picked from commit a3d52b3)
1 parent 0e8d452 commit 531c74e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

configure.ac

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4046,7 +4046,8 @@ AC_CACHE_CHECK([for library containing tputs], [emacs_cv_tputs_lib],
40464046
emacs_cv_tputs_lib='none required'
40474047
else
40484048
# curses precedes termcap because of AIX (Bug#9736#35) and OpenIndiana.
4049-
for tputs_library in '' tinfo ncurses terminfo curses termcap; do
4049+
tputs_libraries='tinfo ncurses terminfo curses termcap tinfow ncursesw'
4050+
for tputs_library in '' $tputs_libraries; do
40504051
OLIBS=$LIBS
40514052
if test -z "$tputs_library"; then
40524053
emacs_cv_tputs_lib='none required'

0 commit comments

Comments
 (0)