diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2002-04-25 23:06:16 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2002-04-25 23:06:16 (GMT) |
commit | 7ab650be9fe7cddfed829737f2d5f313c678789e (patch) | |
tree | 9e3347d50c52b4ff49240416b8a5be28d9d67ad6 /fortran/src/H5FDmpiof.c | |
parent | 68537be4ff09dcdea9c05e0d0d377d336c3a33dd (diff) | |
download | hdf5-7ab650be9fe7cddfed829737f2d5f313c678789e.zip hdf5-7ab650be9fe7cddfed829737f2d5f313c678789e.tar.gz hdf5-7ab650be9fe7cddfed829737f2d5f313c678789e.tar.bz2 |
[svn-r5269]
Purpose:
Maintenance
Description:
Changed code to use H5_HAVE_MPI_MULTI_LANG_* definitions and
H5pubconf_fortran.h include file.
Solution:
Platforms tested:
Let's daily tests do this work. I have to leave now.
Diffstat (limited to 'fortran/src/H5FDmpiof.c')
-rw-r--r-- | fortran/src/H5FDmpiof.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fortran/src/H5FDmpiof.c b/fortran/src/H5FDmpiof.c index 369b800..aada650 100644 --- a/fortran/src/H5FDmpiof.c +++ b/fortran/src/H5FDmpiof.c @@ -1,14 +1,14 @@ #include "H5f90.h" #include <mpi.h> -#include "H5config_fortran.h" +#include "H5pubconf_fortran.h" /* Support for C to Fortran translation in MPI */ -#ifndef HAVE_MPI_MULTI_LANG_Comm +#ifndef H5_HAVE_MPI_MULTI_LANG_Comm #define MPI_Comm_c2f(comm) (int_f)(comm) #define MPI_Comm_f2c(comm) (MPI_Comm)(comm) #endif /*MPI Comm*/ -#ifndef HAVE_MPI_MULTI_LANG_Info +#ifndef H5_HAVE_MPI_MULTI_LANG_Info #define MPI_Info_c2f(info) (int_f)(info) #define MPI_Info_f2c(info) (MPI_Info)(info) #endif /*MPI Info*/ |