[llvm-commits] [poolalloc] r48787 - in /poolalloc/trunk: autoconf/configure.ac configure

John Criswell criswell at uiuc.edu
Tue Mar 25 12:06:29 PDT 2008


Author: criswell
Date: Tue Mar 25 14:06:29 2008
New Revision: 48787

URL: http://llvm.org/viewvc/llvm-project?rev=48787&view=rev
Log:
Fixed the name of the -enable-boundschecks option.

Modified:
    poolalloc/trunk/autoconf/configure.ac
    poolalloc/trunk/configure

Modified: poolalloc/trunk/autoconf/configure.ac
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/autoconf/configure.ac?rev=48787&r1=48786&r2=48787&view=diff

==============================================================================
--- poolalloc/trunk/autoconf/configure.ac (original)
+++ poolalloc/trunk/autoconf/configure.ac Tue Mar 25 14:06:29 2008
@@ -73,7 +73,7 @@
                   )
 
 dnl --enable-boundscheck: Enable SAFECode Bounds Check functionality
-AC_ARG_ENABLE(boundscheck,
+AC_ARG_ENABLE(boundschecks,
   AS_HELP_STRING(--enable-boundschecks,
                  [Enable SAFECode bounds checking (default is NO)]),
                   AC_DEFINE(BOUNDS_CHECK,[[1]]),

Modified: poolalloc/trunk/configure
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/configure?rev=48787&r1=48786&r2=48787&view=diff

==============================================================================
--- poolalloc/trunk/configure (original)
+++ poolalloc/trunk/configure Tue Mar 25 14:06:29 2008
@@ -3646,9 +3646,9 @@
 
 fi;
 
-# Check whether --enable-boundscheck or --disable-boundscheck was given.
-if test "${enable_boundscheck+set}" = set; then
-  enableval="$enable_boundscheck"
+# Check whether --enable-boundschecks or --disable-boundschecks was given.
+if test "${enable_boundschecks+set}" = set; then
+  enableval="$enable_boundschecks"
   cat >>confdefs.h <<\_ACEOF
 #define BOUNDS_CHECK 1
 _ACEOF





More information about the llvm-commits mailing list