* configure.in: Cite the variable ac_cv_lib_readline_main, not
authorJim Blandy <jimb@red-bean.com>
Sun, 10 Jan 1999 14:39:01 +0000 (14:39 +0000)
committerJim Blandy <jimb@red-bean.com>
Sun, 10 Jan 1999 14:39:01 +0000 (14:39 +0000)
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.

configure
configure.in

index 3a7bcb8..8fec3a4 100755 (executable)
--- a/configure
+++ b/configure
@@ -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
 
index 481b29e..1ec758e 100644 (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