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/3bee31e1420d409af983397642d3187f2c... commit 3bee31e1420d409af983397642d3187f2c9497ef Author: Ken Raffenetti <[email protected]> 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 <[email protected]> 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