changeset 2471:7f99808d467d

[project @ 1996-11-05 21:55:53 by jwe]
author jwe
date Tue, 05 Nov 1996 21:55:53 +0000
parents 1e673f0648b5
children 0c788e9b53b8
files ChangeLog configure.in
diffstat 2 files changed, 12 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- 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  <jwe@bevo.che.wisc.edu>
 
+	* 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.
 
--- 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