summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2010-04-15 00:58:22 +0200
committerLudovic Courtès <ludo@gnu.org>2010-05-28 17:02:13 +0200
commitec20a3c86dcad6311d45913cf8ad4291bc8b928c (patch)
tree9693f67c1961715373910174c24deb28335baf76
parent405a79ca7ff12ec81e4963c51be4729ebd6cc922 (diff)
downloadguile-ec20a3c86dcad6311d45913cf8ad4291bc8b928c.tar.gz
add pdcurses to the list of termlibs
* acinclude.m4 (GUILE_READLINE): Look for pdcurses as found on MinGW. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r--acinclude.m42
1 files changed, 1 insertions, 1 deletions
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