diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-03-28 21:16:04 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-03-28 21:16:04 (GMT) |
commit | f8bfe1cb01fb7079b5307892b004a2c4f5c5ae09 (patch) | |
tree | 07cf418a3ce85ed076e9802c4ceb11dda81278d3 /fortran/acsite.m4 | |
parent | 97d0dc22ee2b9016b483ddc2d7a2982e9d0b619c (diff) | |
download | hdf5-f8bfe1cb01fb7079b5307892b004a2c4f5c5ae09.zip hdf5-f8bfe1cb01fb7079b5307892b004a2c4f5c5ae09.tar.gz hdf5-f8bfe1cb01fb7079b5307892b004a2c4f5c5ae09.tar.bz2 |
[svn-r5112]
Purpose:
Bug Fix
Description:
Parallel Fortran wasn't working on Modi4. The tests for parallel
MPI Fortran were failing to find MPI files.
Solution:
Changed the AC_TRY_FLINK() macro so that libraries are included
at the end of the link line so that unresolved symbols can be
found...
Platforms tested:
Modi4
Diffstat (limited to 'fortran/acsite.m4')
-rw-r--r-- | fortran/acsite.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/acsite.m4 b/fortran/acsite.m4 index 7b7c1c5..c6bb4a8 100644 --- a/fortran/acsite.m4 +++ b/fortran/acsite.m4 @@ -77,7 +77,7 @@ AC_DEFUN(AC_LANG_FORTRAN9X, [ define([AC_LANG], [FORTRAN9X]) ac_ext=f90 ac_compile='${F9X-f90} -c $FFLAGS conftest.$ac_ext 1>&AC_FD_CC' -ac_link='${F9X-f90} -o conftest${ac_exeext} $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&AC_FD_CC' +ac_link='${F9X-f90} -o conftest${ac_exeext} $FFLAGS conftest.$ac_ext $LDFLAGS $LIBS 1>&AC_FD_CC' cross_compiling=$ac_cv_prog_f9x_cross ]) |