[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.0.4-96-g0f8237e

mysql vizuser noreply at mpich.org
Thu Apr 25 14:15:31 CDT 2013


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  0f8237efdede048d38401d12d124fb9155988538 (commit)
      from  1c0b649785d408fa47d09864f2943a93978b1d56 (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/0f8237efdede048d38401d12d124fb9155988538

commit 0f8237efdede048d38401d12d124fb9155988538
Author: Dave Goodell <goodell at mcs.anl.gov>
Date:   Tue Apr 23 17:21:01 2013 -0500

    tt#1816: make c99 the default for --enable-strict
    
    Maintaining C89 compliance is an increasingly poor development
    investment for us.  Reasonable C99 compliance (long long support, etc.)
    is ubiquitous.  The hwloc package we use in hydra assumes a certain
    amount of C99 support which is tedious to work around.
    
    Reviewed-by: gropp

diff --git a/confdb/aclocal_cc.m4 b/confdb/aclocal_cc.m4
index fa44e6d..98fdc34 100644
--- a/confdb/aclocal_cc.m4
+++ b/confdb/aclocal_cc.m4
@@ -528,8 +528,8 @@ if test "$enable_strict_done" != "yes" ; then
         -Werror-implicit-function-declaration
     "
 
-    enable_c89=yes
-    enable_c99=no
+    enable_c89=no
+    enable_c99=yes
     enable_posix=2001
     enable_opt=yes
     flags="`echo $1 | sed -e 's/:/ /g' -e 's/,/ /g'`"
@@ -538,9 +538,11 @@ if test "$enable_strict_done" != "yes" ; then
 	     c89)
 		enable_strict_done="yes"
 		enable_c89=yes
+                enable_c99=no
 		;;
 	     c99)
 		enable_strict_done="yes"
+                enable_c89=no
 		enable_c99=yes
 		;;
 	     posix1995)
@@ -569,7 +571,7 @@ if test "$enable_strict_done" != "yes" ; then
 		;;
 	     all|yes)
 		enable_strict_done="yes"
-		enable_c89=yes
+		enable_c99=yes
 		enable_posix=2001
 		enable_opt=yes
 	        ;;

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

Summary of changes:
 confdb/aclocal_cc.m4 |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list