1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

* configure.in: Check for tgoto in ncurses, then termcap.

S.u.S.E. Linux doesn't have a termcap.  (Thanks to Karl
Eichwalder.)
* configure: Regenerated.
This commit is contained in:
Jim Blandy 1998-12-14 10:04:48 +00:00
parent 45a02a29a6
commit 5ee74cec86
2 changed files with 151 additions and 154 deletions

296
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -82,8 +82,13 @@ AC_CHECK_FUNCS(connect)
if test $ac_cv_func_connect = no; then
AC_CHECK_LIB(socket, connect)
fi
AC_CHECK_LIB(termcap, tgoto)
AC_CHECK_LIB(readline, readline)
dnl Should we check for curses, terminfo, and termlib, too?
for termlib in ncurses termcap ; do
AC_CHECK_LIB(${termlib}, tgoto,
[LIBS="-l${termlib} $LIBS"; break])
done
AC_CHECK_LIB(readline, main)
AC_CHECK_FUNCS(rl_clear_signals rl_cleanup_after_signal)
AC_CACHE_CHECK([for rl_getc_function pointer in readline],