From ec20a3c86dcad6311d45913cf8ad4291bc8b928c Mon Sep 17 00:00:00 2001 From: Volker Grabsch Date: Thu, 15 Apr 2010 00:58:22 +0200 Subject: [PATCH] add pdcurses to the list of termlibs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * acinclude.m4 (GUILE_READLINE): Look for pdcurses as found on MinGW. Signed-off-by: Ludovic Courtès --- acinclude.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acinclude.m4 b/acinclude.m4 index 2f1466bac..8cfe1d41f 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -378,7 +378,7 @@ dnl dnl Check all the things needed by `guile-readline', the Readline dnl bindings. AC_DEFUN([GUILE_READLINE], [ - for termlib in ncurses curses termcap terminfo termlib ; do + for termlib in ncurses curses termcap terminfo termlib pdcurses ; do AC_CHECK_LIB(${termlib}, [tgoto], [READLINE_LIBS="-l${termlib} $READLINE_LIBS"; break]) done