diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-09-22 23:02:40 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-09-22 23:02:40 (GMT) |
commit | c8c43d2b9a66bf1e8af5c01f99b194247ae1e861 (patch) | |
tree | 1ee4b32967d11b615af6aadb32cc79fd516bea6b /config/ia64-linux-gnu | |
parent | 14acfddff26927ec4729d042c9017b493a9aff62 (diff) | |
download | hdf5-c8c43d2b9a66bf1e8af5c01f99b194247ae1e861.zip hdf5-c8c43d2b9a66bf1e8af5c01f99b194247ae1e861.tar.gz hdf5-c8c43d2b9a66bf1e8af5c01f99b194247ae1e861.tar.bz2 |
[svn-r11461] Purpose:
Code cleanup
Description:
Removed Fortran type sizes from config/* files.
Solution:
These lines weren't doing anything anymore; they've been replaced by automatic
type generation. This is just housekeeping to remove them from
the config/* files.
Platforms tested:
mir, sol, modi4
Diffstat (limited to 'config/ia64-linux-gnu')
-rw-r--r-- | config/ia64-linux-gnu | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/config/ia64-linux-gnu b/config/ia64-linux-gnu index f22bf21..6db9a62 100644 --- a/config/ia64-linux-gnu +++ b/config/ia64-linux-gnu @@ -37,18 +37,6 @@ esac # The default Fortran 90 compiler -# -# HDF5 integers -# -# R_LARGE is the number of digits for the bigest integer supported. -# R_INTEGER is the number of digits in INTEGER -# -# (for the Linux architechture) -# - -R_LARGE=18 -R_INTEGER=9 - # Use Intel Fortran compiler by default. if test "X-$FC" = "X-"; then FC="ifort" @@ -60,22 +48,10 @@ case $FC in # -Vaxlib is for non-standard fortran calls like exit(). MORE_FCFLAGS='-fpp -DDEC$=DEC_ -DMS$=MS_ -Vaxlib' FCFLAGS="$FCFLAGS $MORE_FCFLAGS" - HADDR_T='SELECTED_INT_KIND(R_LARGE)' - HSIZE_T='SELECTED_INT_KIND(R_LARGE)' - HSSIZE_T='SELECTED_INT_KIND(R_LARGE)' - HID_T='SELECTED_INT_KIND(R_INTEGER)' - SIZE_T='SELECTED_INT_KIND(R_LARGE)' - OBJECT_NAMELEN_DEFAULT_F=-1 f9x_flags_set=yes ;; *) - HADDR_T='SELECTED_INT_KIND(R_LARGE)' - HSIZE_T='SELECTED_INT_KIND(R_LARGE)' - HSSIZE_T='SELECTED_INT_KIND(R_LARGE)' - HID_T='SELECTED_INT_KIND(R_INTEGER)' - SIZE_T='SELECTED_INT_KIND(R_LARGE)' - OBJECT_NAMELEN_DEFAULT_F=-1 f9x_flags_set=yes ;; esac |