summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2019-01-05 09:47:14 -0800
committerNoam Postavsky <npostavs@gmail.com>2019-04-27 13:17:10 -0400
commit531c74e2493cf54dc76238930bb93c6d7112ed3b (patch)
tree9235541378d70a9a538eba3042b5b4a7c89be34b /configure.ac
parent0e8d452c1c166ff65a0325de23bc04b57aea68d8 (diff)
downloademacs-531c74e2493cf54dc76238930bb93c6d7112ed3b.tar.gz
Port to platforms where tputs is in libtinfow
* configure.ac (tputs_library): Also try tinfow, ncursesw (Bug#33977). (cherry picked from commit a3d52b3057c98bce581bc94912ef3ced6fad6f14)
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index cf3fbd9d503..58a3ea10913 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4046,7 +4046,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'