summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Blandy <jimb@red-bean.com>1999-01-11 06:46:53 +0000
committerJim Blandy <jimb@red-bean.com>1999-01-11 06:46:53 +0000
commit21cb5cfc36e1cba2f8c7faacfc3a3df9957d18b9 (patch)
tree9b2ab1e2860c6153280b2f033f541bb873b10846
parent5f3718775bd56cc8f0a164423f1f3be662ab4515 (diff)
downloadguile-21cb5cfc36e1cba2f8c7faacfc3a3df9957d18b9.tar.gz
* configure.in: Remove quotes around ac_cv_lib_readline_main and
ac_cv_var_rl_getc_function. They should both always be set to non-null values; this way, we get error messages. * configure: Regenerated.
-rwxr-xr-xconfigure3
-rw-r--r--configure.in2
2 files changed, 2 insertions, 3 deletions
diff --git a/configure b/configure
index 8fec3a4ef..8010d4221 100755
--- 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_main = yes -a $ac_cv_var_rl_getc_function = no; then
echo 'Warning: libreadline is too old on your system. Need >= 2.1.'
fi
@@ -5255,7 +5255,6 @@ fi; done
EOF
cat >> $CONFIG_STATUS <<EOF
-
EOF
cat >> $CONFIG_STATUS <<\EOF
test -z "$CONFIG_HEADERS" || echo timestamp > libguile/stamp-h
diff --git a/configure.in b/configure.in
index 1ec758eb0..8ab0fe9a1 100644
--- a/configure.in
+++ b/configure.in
@@ -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_main" = 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