diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2004-01-06 20:54:55 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2004-01-06 20:54:55 (GMT) |
commit | 850696344ca8180ea39d2c254ce42373decb8cda (patch) | |
tree | 233cb0ee62d3b1078f001c0d531cbda46530db7c /fortran/src | |
parent | 3396dd951331510c30a1e88f74a5535c15527284 (diff) | |
download | hdf5-850696344ca8180ea39d2c254ce42373decb8cda.zip hdf5-850696344ca8180ea39d2c254ce42373decb8cda.tar.gz hdf5-850696344ca8180ea39d2c254ce42373decb8cda.tar.bz2 |
[svn-r8033]
Purpose: Maintenance
Description: Fortran APIs MAC OS X port for IBM XL Fortran compiler
Solution: Brought back changes from 1.6 branch
Platforms tested: pommier, h5comittested; this time h5committest
complained about copperpp directory and didn't run;
tests on verbena and sol passed.
Misc. update:
Diffstat (limited to 'fortran/src')
-rw-r--r-- | fortran/src/H5f90i.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/fortran/src/H5f90i.h b/fortran/src/H5f90i.h index 6ded761..9eecb7f 100644 --- a/fortran/src/H5f90i.h +++ b/fortran/src/H5f90i.h @@ -50,6 +50,21 @@ typedef float real_f; #define _fcdtocp(desc) (desc) #endif /*IBM6000*/ +/* MAC APPLE definitions with IBM XL compiler*/ +#if defined(__APPLE__) +typedef char *_fcd; +typedef long long hsize_t_f; +typedef long long hssize_t_f; +typedef int size_t_f; +typedef int int_f; +typedef int hid_t_f; +typedef float real_f; +#define FNAME(x) x +#define _fcdtocp(desc) (desc) + +#endif /*APPLE*/ + + /* LINUX definitions */ #if (defined(i386) || defined(__i386__)) && (defined(linux) || defined(__linux__)) |