# HG changeset patch # User jwe # Date 988314603 0 # Node ID 74255bd05bdd8eb95d61c20ae3617cea2f0a952d # Parent 0ee55719541aafe0bda9e74d66b4328a9ebaeb4b [project @ 2001-04-26 19:50:03 by jwe] diff --git a/aclocal.m4 b/aclocal.m4 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -979,6 +979,7 @@ [ --enable-readline use readline library (default is yes)], [if test "$enableval" = no; then USE_READLINE=false + warn_readline="command editing and history features require GNU Readline" fi]) if $USE_READLINE; then AC_CHECK_LIB(readline, rl_set_keyboard_input_timeout, [ diff --git a/configure.in b/configure.in --- a/configure.in +++ b/configure.in @@ -21,7 +21,7 @@ ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA ### 02111-1307, USA. -AC_REVISION($Revision: 1.345 $) +AC_REVISION($Revision: 1.346 $) AC_PREREQ(2.9) AC_INIT(src/octave.cc) AC_CONFIG_HEADER(config.h) @@ -1397,6 +1397,11 @@ warn_msg_printed=true fi +if test -n "$warn_readline"; then + AC_MSG_WARN($warn_readline) + warn_msg_printed=true +fi + if test -n "$warn_termlibs"; then AC_MSG_WARN($warn_termlibs) warn_msg_printed=true