]> git.eshelyaron.com Git - emacs.git/commitdiff
Port to platforms where tputs is in libtinfow
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 5 Jan 2019 17:47:14 +0000 (09:47 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 5 Jan 2019 18:15:56 +0000 (10:15 -0800)
* configure.ac (tputs_library): Also try tinfow, ncursesw (Bug#33977).

configure.ac

index 91fa41730817a9a0a9711d645f98413490ee6b77..e5bd6943caff19983484e19f62db14ff4747ff68 100644 (file)
@@ -4111,7 +4111,8 @@ AC_CACHE_CHECK([for library containing tputs], [emacs_cv_tputs_lib],
   emacs_cv_tputs_lib='none required'
 else
   # curses precedes termcap because of AIX (Bug#9736#35) and OpenIndiana.
-  for tputs_library in '' tinfo ncurses terminfo curses termcap; do
+  tputs_libraries='tinfo ncurses terminfo curses termcap tinfow ncursesw'
+  for tputs_library in '' $tputs_libraries; do
     OLIBS=$LIBS
     if test -z "$tputs_library"; then
       emacs_cv_tputs_lib='none required'