diff options
| author | Paul Eggert | 2017-10-24 11:46:30 -0700 |
|---|---|---|
| committer | Paul Eggert | 2017-10-24 11:46:53 -0700 |
| commit | 19667f44efabda7d4e53e706c6cd8140145b2a1a (patch) | |
| tree | 523cfbdf46de93a81f3e0ccf11cdcfb2b11470b7 | |
| parent | 3fc05cfaecf03a249bb9df1a9566d16ec005c7c3 (diff) | |
| download | emacs-19667f44efabda7d4e53e706c6cd8140145b2a1a.tar.gz emacs-19667f44efabda7d4e53e706c6cd8140145b2a1a.zip | |
* configure.ac: Tweak libcurses diagnostic.
| -rw-r--r-- | configure.ac | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 8d14115c490..646a637cf34 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -4033,8 +4033,7 @@ AC_CACHE_CHECK([for library containing tputs], [emacs_cv_tputs_lib], | |||
| 4033 | [if test "${opsys}" = "mingw32"; then | 4033 | [if test "${opsys}" = "mingw32"; then |
| 4034 | emacs_cv_tputs_lib='none required' | 4034 | emacs_cv_tputs_lib='none required' |
| 4035 | else | 4035 | else |
| 4036 | # Maybe curses should be tried earlier? | 4036 | # curses precedes termcap because of AIX (Bug#9736#35) and OpenIndiana. |
| 4037 | # See https://debbugs.gnu.org/9736#35 | ||
| 4038 | for tputs_library in '' tinfo ncurses terminfo curses termcap; do | 4037 | for tputs_library in '' tinfo ncurses terminfo curses termcap; do |
| 4039 | OLIBS=$LIBS | 4038 | OLIBS=$LIBS |
| 4040 | if test -z "$tputs_library"; then | 4039 | if test -z "$tputs_library"; then |
| @@ -4054,7 +4053,7 @@ fi]) | |||
| 4054 | AS_CASE(["$emacs_cv_tputs_lib"], | 4053 | AS_CASE(["$emacs_cv_tputs_lib"], |
| 4055 | [no], [AC_MSG_ERROR([The required function 'tputs' was not found in any library. | 4054 | [no], [AC_MSG_ERROR([The required function 'tputs' was not found in any library. |
| 4056 | The following libraries were tried (in order): | 4055 | The following libraries were tried (in order): |
| 4057 | libtinfo, libncurses, libterminfo, libtermcap, libcurses | 4056 | libtinfo, libncurses, libterminfo, libcurses, libtermcap |
| 4058 | Please try installing whichever of these libraries is most appropriate | 4057 | Please try installing whichever of these libraries is most appropriate |
| 4059 | for your system, together with its header files. | 4058 | for your system, together with its header files. |
| 4060 | For example, a libncurses-dev(el) or similar package.])], | 4059 | For example, a libncurses-dev(el) or similar package.])], |