changeset 2450:c196b6a780b3

[project @ 1996-10-30 23:15:55 by jwe]
author jwe
date Wed, 30 Oct 1996 23:15:56 +0000
parents 31d5588dbb61
children d8d35d1f4a31
files ChangeLog configure.in
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 Wed Oct 30 01:04:13 1996  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
+	* configure.in: Default is now no internal bounds checking.
+
 	* Makefile.in (all): Fix message to say 2.7.2, not 2.7.0.
 
 	* config.h.bot (GCC_ATTR_NORETURN): Rename from NORETURN.
--- a/configure.in
+++ b/configure.in
@@ -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.221 $)
+AC_REVISION($Revision: 1.222 $)
 AC_PREREQ(2.9)
 AC_INIT(src/octave.cc)
 AC_CONFIG_HEADER(config.h)
@@ -196,7 +196,7 @@
 ### checking on element references.  This slows some operations down a
 ### bit, so give the user the option of disabling it.
 
-BOUNDS_CHECKING=true
+BOUNDS_CHECKING=false
 AC_ARG_ENABLE(bounds-check,
   [  --enable-bounds-check   for internal array classes (default is yes)],
   [if test "$enableval" = no; then BOUNDS_CHECKING=false; fi], [])