# HG changeset patch # User jwe # Date 847230953 0 # Node ID 7f99808d467d23c9e8554c1a316e7fcd0effc79c # Parent 1e673f0648b5f0eaf8f9acf0789a0724f733b6d6 [project @ 1996-11-05 21:55:53 by jwe] diff -r 1e673f0648b5 -r 7f99808d467d ChangeLog --- a/ChangeLog Tue Nov 05 21:47:59 1996 +0000 +++ b/ChangeLog Tue Nov 05 21:55:53 1996 +0000 @@ -1,8 +1,12 @@ Tue Nov 5 12:32:30 1996 John W. Eaton + * configure.in: Comment out code to handle --enable-readline since + it doesn't work yet. + * aclocal.m4 (OCTAVE_SIGNAL_CHECK, OCTAVE_REINSTALL_SIGHANDLERS): New checks stolen from bash 2.0 config. * configure.in: Use them. + * acconfig.h: Add #undefs for HAVE_BSD_SIGNALS, HAVE_POSIX_SIGNALS, HAVE_USG_SIGHOLD, and MUST_REINSTALL_SIGHANDLERS. diff -r 1e673f0648b5 -r 7f99808d467d configure.in --- a/configure.in Tue Nov 05 21:47:59 1996 +0000 +++ b/configure.in Tue Nov 05 21:55:53 1996 +0000 @@ -20,7 +20,7 @@ ### along with Octave; see the file COPYING. If not, write to the Free ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -AC_REVISION($Revision: 1.224 $) +AC_REVISION($Revision: 1.225 $) AC_PREREQ(2.9) AC_INIT(src/octave.cc) AC_CONFIG_HEADER(config.h) @@ -179,13 +179,13 @@ READLINE_DIR=readline USE_READLINE=true LIBREADLINE=-lreadline -AC_ARG_ENABLE(readline, - [ --enable-readline use readline library (default is yes)], - [if test "$enableval" = no; then - USE_READLINE=false; - LIBREADLINE=""; - READLINE_DIR=""; - fi], []) +dnlAC_ARG_ENABLE(readline, +dnl [ --enable-readline use readline library (default is yes)], +dnl [if test "$enableval" = no; then +dnl USE_READLINE=false; +dnl LIBREADLINE=""; +dnl READLINE_DIR=""; +dnl fi], []) if $USE_READLINE; then AC_DEFINE(USE_READLINE, 1) fi