[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] master a3d52b3: Port to platforms where tputs is in libtin
From: |
Paul Eggert |
Subject: |
[Emacs-diffs] master a3d52b3: Port to platforms where tputs is in libtinfow |
Date: |
Sat, 5 Jan 2019 13:16:01 -0500 (EST) |
branch: master
commit a3d52b3057c98bce581bc94912ef3ced6fad6f14
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>
Port to platforms where tputs is in libtinfow
* configure.ac (tputs_library): Also try tinfow, ncursesw (Bug#33977).
---
configure.ac | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 91fa417..e5bd694 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'
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] master a3d52b3: Port to platforms where tputs is in libtinfow,
Paul Eggert <=