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 f77aacb88230a2197fbfd0e50fe4a05ea2013056 (commit) via e58125493f6a85321f8863b7263dd3729ff4f9c1 (commit) from cd5b43b2323661a6f25d29647784b66fb152a723 (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/f77aacb88230a2197fbfd0e50fe4a05ea2... commit f77aacb88230a2197fbfd0e50fe4a05ea2013056 Author: William Gropp <[email protected]> Date: Sun Jul 7 15:00:15 2013 -0500 Added a test for an invalid, size 0, determination of the sizeof a Fortran integer diff --git a/configure.ac b/configure.ac index 21f174e..4910610 100644 --- a/configure.ac +++ b/configure.ac @@ -1894,12 +1894,7 @@ if test -n "$F90" -o -n "$F90FLAGS" ; then fi # ---------------------------------------------------------------------------- # Handle default choices for the Fortran compilers -if test "$enable_f77" = "yes" ; then - # Check for a Fortran compiler - # FIXME already done earlier - dnl PAC_PROG_F77 - : -fi +# Note that these have already been set above if test "$enable_f77" = "yes" -a "$F77" = "" ; then # No Fortran 77 compiler found; abort @@ -3484,7 +3479,8 @@ if test "$enable_f77" = yes ; then MPI_CHARACTER=0x4c00011a AC_SUBST(MPI_CHARACTER) - if test -z "$pac_cv_f77_sizeof_integer" ; then + if test -z "$pac_cv_f77_sizeof_integer" -o \ + "X$pac_cv_f77_sizeof_integer" = "X0" ; then AC_MSG_ERROR([Unable to configure with Fortran support because configure could not determine the size of a Fortran INTEGER. Consider setting CROSS_F77_SIZEOF_INTEGER to the length in bytes of a Fortran INTEGER]) fi len_integer=$pac_cv_f77_sizeof_integer http://git.mpich.org/mpich.git/commitdiff/e58125493f6a85321f8863b7263dd3729f... commit e58125493f6a85321f8863b7263dd3729ff4f9c1 Author: William Gropp <[email protected]> Date: Sun Jul 7 14:57:43 2013 -0500 Added missing delete of the created keyval diff --git a/test/mpi/attr/attrdeleteget.c b/test/mpi/attr/attrdeleteget.c index 362287c..f709579 100644 --- a/test/mpi/attr/attrdeleteget.c +++ b/test/mpi/attr/attrdeleteget.c @@ -24,6 +24,7 @@ int main(int argc,char **argv) MPI_Comm_create_keyval(MPI_NULL_COPY_FN, delete_fn, &key, &errs); MPI_Comm_set_attr(scomm, key, a); MPI_Comm_free(&scomm); + MPI_Comm_free_keyval( &key ); MTest_Finalize(errs); MPI_Finalize(); return 0; ----------------------------------------------------------------------- Summary of changes: configure.ac | 10 +++------- test/mpi/attr/attrdeleteget.c | 1 + 2 files changed, 4 insertions(+), 7 deletions(-) hooks/post-receive -- MPICH primary repository