[svn-r26062] Changed the fortran test back from "USE mpi" to "include "mpif.h"". Using the module causes problems on the Cray (hopper).

This commit is contained in:
Scot Breitenfeld 2015-01-28 10:01:23 -05:00
parent bc0d6a1500
commit 052638dbc8
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -27959,7 +27959,7 @@ $as_echo_n "checking whether a simple MPI-IO Fortran program can be linked... "
cat > conftest.$ac_ext <<_ACEOF
PROGRAM main
USE mpi
include "mpif.h"
INTEGER :: ierr
CALL mpi_file_open( ierr )
END

View File

@ -268,7 +268,7 @@ dnl Try link a simple MPI program.
AC_MSG_CHECKING([whether a simple MPI-IO Fortran program can be linked])
AC_LINK_IFELSE([
PROGRAM main
USE mpi
include "mpif.h"
INTEGER :: ierr
CALL mpi_file_open( ierr )
END],