diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-04-23 22:16:47 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-04-23 22:16:47 (GMT) |
commit | b5c1eb3a612e5e3b930c1d1e04864f934be01630 (patch) | |
tree | 6bd2c1d99806f39d7a2f7179065ace9b48c5591f /fortran/configure | |
parent | 835a51fd9dfaa601c518326ade5f114e19165433 (diff) | |
download | hdf5-b5c1eb3a612e5e3b930c1d1e04864f934be01630.zip hdf5-b5c1eb3a612e5e3b930c1d1e04864f934be01630.tar.gz hdf5-b5c1eb3a612e5e3b930c1d1e04864f934be01630.tar.bz2 |
[svn-r5241] Purpose:
Fix
Description:
When doing a TRY_LINK, the compiler complained about lack of
parameters being passed to the function.
Solution:
Added the parameter it wants...
Diffstat (limited to 'fortran/configure')
-rwxr-xr-x | fortran/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fortran/configure b/fortran/configure index b79b2d3..234b58f 100755 --- a/fortran/configure +++ b/fortran/configure @@ -8350,7 +8350,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu int main () { -MPI_Comm_c2f() +MPI_Comm c_comm; MPI_Comm_c2f(c_comm) ; return 0; } @@ -8400,7 +8400,7 @@ echo $ECHO_N "checking for MPI_Info_c2f and MPI_Info_f2c functions... $ECHO_C" > int main () { -MPI_Info_c2f() +MPI_Info c_info; MPI_Info_c2f(c_info) ; return 0; } |