diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2006-03-09 21:22:56 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2006-03-09 21:22:56 (GMT) |
commit | 00dd94b69bf11346bc4e8caf537b7a6ad43f7a6f (patch) | |
tree | 1b3ecd4b7069f8e213aa479ace23734bf8d08e7c /fortran | |
parent | 07d07eaae57218124c7c87a8f23f4d106ac15d2a (diff) | |
download | hdf5-00dd94b69bf11346bc4e8caf537b7a6ad43f7a6f.zip hdf5-00dd94b69bf11346bc4e8caf537b7a6ad43f7a6f.tar.gz hdf5-00dd94b69bf11346bc4e8caf537b7a6ad43f7a6f.tar.bz2 |
[svn-r12053] Purpose: VMS port
Description: defined H5_FC_FUNC_(name, NAME) for VMS since we cannot
run autoconf on that system
Solution: Used append methos to form the string; this may become the change
for all platforms after more testing
Platforms tested: heping, VMS server
Misc. update:
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/src/H5f90proto.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fortran/src/H5f90proto.h b/fortran/src/H5f90proto.h index 5d972f9..3a070b9 100644 --- a/fortran/src/H5f90proto.h +++ b/fortran/src/H5f90proto.h @@ -21,6 +21,10 @@ H5_FCDLL char * HD5f2cstring (_fcd fdesc, size_t len); H5_FCDLL void HD5packFstring(char *src, char *dest, size_t len); +#ifdef H5_VMS +#define H5_FC_FUNC_(name, NAME) NAME +#endif /*H5_VMS*/ + /* * Functions from H5Ff.c */ |