[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.1.1-26-g3bee31e

Service Account noreply at mpich.org
Mon Jun 23 10:48: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  3bee31e1420d409af983397642d3187f2c9497ef (commit)
      from  034b37d189d0082292a8b861c21e1c3bfb61855b (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/3bee31e1420d409af983397642d3187f2c9497ef

commit 3bee31e1420d409af983397642d3187f2c9497ef
Author: Ken Raffenetti <raffenet at mcs.anl.gov>
Date:   Sat Jun 21 15:09:27 2014 -0500

    fixup for [f8c8d5aa]
    
    The generated code for the "Hello, World" conftest was missing an
    include for stdio.h. This caused false negatives when testing with
    some compilers.
    
    Signed-off-by: Huiwei Lu <huiweilu at mcs.anl.gov>

diff --git a/confdb/aclocal_cc.m4 b/confdb/aclocal_cc.m4
index 8fc999b..3ea2392 100644
--- a/confdb/aclocal_cc.m4
+++ b/confdb/aclocal_cc.m4
@@ -46,7 +46,8 @@ CFLAGS_opt="$pac_opt $CFLAGS"
 pac_result="unknown"
 
 AC_LANG_CONFTEST([
-	AC_LANG_PROGRAM([[const char hw[] = "Hello, World\n";]],
+	AC_LANG_PROGRAM([[#include <stdio.h>
+                          const char hw[] = "Hello, World\n";]],
 		[[fputs (hw, stdout);]])
 ])
 CFLAGS="$CFLAGS_orig"

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

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


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list