* configure.in: Cite the variable ac_cv_lib_readline_main, not

ac_cv_lib_readline_readline; the latter isn't set any more, since
we look for 'main' in libreadline now.  Add quotes around
reference to the variable references, too, so this will work even
when a variable's value is the empty string.
* configure: Regenerated.
This commit is contained in:
Jim Blandy 1999-01-10 14:39:01 +00:00
commit f734697428
2 changed files with 2 additions and 2 deletions

2
configure vendored
View file

@ -2811,7 +2811,7 @@ EOF
fi
if test $ac_cv_lib_readline_readline = yes -a $ac_cv_var_rl_getc_function = no; then
if test "$ac_cv_lib_readline_readline" = yes -a "$ac_cv_var_rl_getc_function" = no; then
echo 'Warning: libreadline is too old on your system. Need >= 2.1.'
fi

View file

@ -113,7 +113,7 @@ if test "$ac_cv_var_rl_getc_function" = "yes"; then
AC_DEFINE(HAVE_RL_GETC_FUNCTION)
fi
if test $ac_cv_lib_readline_readline = yes -a $ac_cv_var_rl_getc_function = no; then
if test "$ac_cv_lib_readline_main" = yes -a "$ac_cv_var_rl_getc_function" = no; then
echo 'Warning: libreadline is too old on your system. Need >= 2.1.'
fi