diff options
| author | Paul Eggert | 2019-01-05 09:47:14 -0800 |
|---|---|---|
| committer | Paul Eggert | 2019-01-05 10:15:56 -0800 |
| commit | a3d52b3057c98bce581bc94912ef3ced6fad6f14 (patch) | |
| tree | a42e15bb23824f6a7f2e6486b31eca916c775ff0 | |
| parent | 42c1332494220fab8a07f23f33951edbb01d1c81 (diff) | |
| download | emacs-a3d52b3057c98bce581bc94912ef3ced6fad6f14.tar.gz emacs-a3d52b3057c98bce581bc94912ef3ced6fad6f14.zip | |
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], | |||
| 4111 | emacs_cv_tputs_lib='none required' | 4111 | emacs_cv_tputs_lib='none required' |
| 4112 | else | 4112 | else |
| 4113 | # curses precedes termcap because of AIX (Bug#9736#35) and OpenIndiana. | 4113 | # curses precedes termcap because of AIX (Bug#9736#35) and OpenIndiana. |
| 4114 | for tputs_library in '' tinfo ncurses terminfo curses termcap; do | 4114 | tputs_libraries='tinfo ncurses terminfo curses termcap tinfow ncursesw' |
| 4115 | for tputs_library in '' $tputs_libraries; do | ||
| 4115 | OLIBS=$LIBS | 4116 | OLIBS=$LIBS |
| 4116 | if test -z "$tputs_library"; then | 4117 | if test -z "$tputs_library"; then |
| 4117 | emacs_cv_tputs_lib='none required' | 4118 | emacs_cv_tputs_lib='none required' |