# HG changeset patch # User jwe # Date 846717356 0 # Node ID c196b6a780b3f37855c2e099751dccc2bb0fb68b # Parent 31d5588dbb61c4d4c87af5432d4cc4379960fe5d [project @ 1996-10-30 23:15:55 by jwe] diff -r 31d5588dbb61 -r c196b6a780b3 ChangeLog --- a/ChangeLog Wed Oct 30 23:00:41 1996 +0000 +++ b/ChangeLog Wed Oct 30 23:15:56 1996 +0000 @@ -1,5 +1,7 @@ Wed Oct 30 01:04:13 1996 John W. Eaton + * 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. diff -r 31d5588dbb61 -r c196b6a780b3 configure.in --- a/configure.in Wed Oct 30 23:00:41 1996 +0000 +++ b/configure.in Wed Oct 30 23:15:56 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.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], [])