summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2019-01-05 09:47:14 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2019-01-05 10:15:56 -0800
commita3d52b3057c98bce581bc94912ef3ced6fad6f14 (patch)
treea42e15bb23824f6a7f2e6486b31eca916c775ff0
parent42c1332494220fab8a07f23f33951edbb01d1c81 (diff)
downloademacs-a3d52b3057c98bce581bc94912ef3ced6fad6f14.tar.gz
Port to platforms where tputs is in libtinfow
* configure.ac (tputs_library): Also try tinfow, ncursesw (Bug#33977).
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 91fa4173081..e5bd6943caf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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'