diff options
author | James Laird <jlaird@hdfgroup.org> | 2006-03-31 18:51:49 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2006-03-31 18:51:49 (GMT) |
commit | 1c7d12a7699faad5283b53f6d95a1b7be59d99af (patch) | |
tree | 5ba77a36e2e18c3419cf2c3fcc6154dae8a9ceb1 /configure | |
parent | 92178e5fffb69d32d5a1f5781969a3c6b9bf9f35 (diff) | |
download | hdf5-1c7d12a7699faad5283b53f6d95a1b7be59d99af.zip hdf5-1c7d12a7699faad5283b53f6d95a1b7be59d99af.tar.gz hdf5-1c7d12a7699faad5283b53f6d95a1b7be59d99af.tar.bz2 |
[svn-r12186] Purpose:
Bug fix
Description:
Made parallel fortran configuration happier on modi4
Solution:
The old configure macro, AC_TRY_LINK, added a couple of extra lines to
the Fortran test program which the new macro doesn't. Added those
lines manually.
Platforms tested:
modi4, copper (change should affect only parallel fortran)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -48492,9 +48492,11 @@ ac_compiler_gnu=$ac_cv_fc_compiler_gnu cat >conftest.$ac_ext <<_ACEOF + program main include 'mpif.h' integer:: ierr call mpi_file_open( ierr ) + end _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 @@ -48598,9 +48600,11 @@ rm -f conftest.err conftest.$ac_objext \ if test "X$PARALLEL" = "Xyes"; then cat >conftest.$ac_ext <<_ACEOF + program main include 'mpif.h' integer:: ierr call mpi_file_open( ierr ) + end _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |