rc

[fork] interactive rc shell
Log | Files | Refs | README | LICENSE

commit 46c5b30c80c5b3b04a0d068a05b34e68091f4138
parent 5fd501ac0bf1a9d8515e7267016e87b35bc39ba6
Author: tgoodwin <tgoodwin>
Date:   Wed, 15 Jul 1998 13:11:10 +0000

do warning right if readline not found

Diffstat:
Mconfigure.ac | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac @@ -6,7 +6,7 @@ AM_CONFIG_HEADER(config.h) AC_ARG_PROGRAM -AC_DEFINE(RELDATE, "1998-07-10") +AC_DEFINE(RELDATE, "1998-07-15") dnl If we're using gcc, specify `-Wall'. I've also checked the code dnl with `-pedantic -W -Wall -Wpointer-arith -Wstrict-prototypes @@ -297,7 +297,7 @@ AC_ARG_WITH(readline, [ --with-readline Bloated GNU line editing], [ AC_DEFINE(READLINE) LIBS="$LIBS -lreadline -ltermcap" AC_CHECK_LIB(readline, _rl_clean_up_for_exit, , AC_DEFINE(READLINE_OLD), -ltermcap) - ], AC_MSG_ERROR("$rc_readline_err"), -ltermcap) + ], AC_MSG_ERROR(readline library not found), -ltermcap) ]) AM_CONDITIONAL(AMC_READLINE, test "${with_readline+set}" = set)