diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-01-05 09:47:14 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-01-05 10:15:56 -0800 |
commit | a3d52b3057c98bce581bc94912ef3ced6fad6f14 (patch) | |
tree | a42e15bb23824f6a7f2e6486b31eca916c775ff0 | |
parent | 42c1332494220fab8a07f23f33951edbb01d1c81 (diff) | |
download | emacs-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.ac | 3 |
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' |