[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.1.3-61-g48ec4d8

Service Account noreply at mpich.org
Fri Oct 31 09:11:11 CDT 2014


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "MPICH primary repository".

The branch, master has been updated
       via  48ec4d8a44fdfd9fdef2b0888577817febc82adb (commit)
      from  fe283e913b045aca234290ba31495b2089edb64d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.mpich.org/mpich.git/commitdiff/48ec4d8a44fdfd9fdef2b0888577817febc82adb

commit 48ec4d8a44fdfd9fdef2b0888577817febc82adb
Author: Wesley Bland <wbland at anl.gov>
Date:   Thu Oct 30 10:45:28 2014 -0500

    Fix configure related to --enable-error-checking
    
    The default --enable-error-checking (used when no additional value is
    included) value ended up getting set to "yes" instead of "default". This
    ended up preventing configure from passing under certain conditions.
    This changes the default to "all" and fixes the check for "yes".
    
    Signed-off-by: Ken Raffenetti <raffenet at mcs.anl.gov>

diff --git a/configure.ac b/configure.ac
index 5c3d291..f7ffd0a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -329,7 +329,7 @@ AC_ARG_ENABLE(error-checking,
         runtime   - error checking controllable at runtime through environment 
                     variables
         all       - error checking always enabled (default)
-],,enable_error_checking=default)
+],,enable_error_checking=all)
 
 AC_ARG_ENABLE(error-messages,
 [  --enable-error-messages=level - Control the amount of detail in error messages.
@@ -916,7 +916,7 @@ fi
 
 # error-checking
 # Change default into the specific value of the default
-if test "$enable_error_checking" = "default" ; then
+if test "$enable_error_checking" = "yes" ; then
    enable_error_checking=all
 fi
 # glue_romio.h needs the variable HAVE_ERROR_CHECKING to have the value 0 or 1
@@ -927,7 +927,7 @@ case "$enable_error_checking" in
     # checking tests in the test suite
     ac_configure_args="${ac_configure_args} --disable-checkerrors"
     ;;
-    all|yes|runtime)
+    all|runtime)
     error_checking_kind=`echo $enable_error_checking | \
     tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
     error_checking_kind=MPID_ERROR_LEVEL_$error_checking_kind

-----------------------------------------------------------------------

Summary of changes:
 configure.ac |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list