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

* configure.in: Changed AC_MSG_ERROR into AC_MSG_WARN in case

readline doesn't exist on the system, so that configuration can
proceed normally without readline.
This commit is contained in:
Mikael Djurfeldt 1999-07-24 11:38:30 +00:00
parent 84a8c61dfc
commit 66e28f022f

View file

@ -12,7 +12,7 @@ done
AC_CHECK_LIB(readline, main)
if test $ac_cv_lib_readline_main = no; then
AC_MSG_ERROR([libreadline was not found on your system.])
AC_MSG_WARN([libreadline was not found on your system.])
fi
AC_CHECK_FUNCS(rl_clear_signals rl_cleanup_after_signal)