summaryrefslogtreecommitdiffstats
path: root/fortran
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2000-10-16 18:35:27 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2000-10-16 18:35:27 (GMT)
commit0d993ff8bc291de5af8e5c49f2506fe55bc3b296 (patch)
tree6d8aeaa8b92bb88d213e7c244e2007266b215a5f /fortran
parenta67ef7d34b0a7a7eebcda8822f3dc0f269821022 (diff)
downloadhdf5-0d993ff8bc291de5af8e5c49f2506fe55bc3b296.zip
hdf5-0d993ff8bc291de5af8e5c49f2506fe55bc3b296.tar.gz
hdf5-0d993ff8bc291de5af8e5c49f2506fe55bc3b296.tar.bz2
[svn-r2685]
Purpose: Fortran HPUX 11.00 port Description: Added Fortran stuff to the hpux11.00 file Platforms tested: Has not been tested yet. Will do it after this checkin on opus.
Diffstat (limited to 'fortran')
-rw-r--r--fortran/config/hpux11.0030
1 files changed, 30 insertions, 0 deletions
diff --git a/fortran/config/hpux11.00 b/fortran/config/hpux11.00
index 0b39f3c..a1bd746 100644
--- a/fortran/config/hpux11.00
+++ b/fortran/config/hpux11.00
@@ -34,3 +34,33 @@ case "X-$CC" in
PROFILE_CPPFLAGS="-Ae"
;;
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 Digital UNIX architechture)
+#
+R_LARGE=18
+R_INTEGER=9
+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_INTEGER)'
+OBJECT_NAMELEN_DEFAULT_F=-1
+
+if test "X-" = "X-$F9X"; then
+ F9X=f90
+fi
+
+if test "X-" = "X-$f9x_flags_set"; then
+ FFLAGS="-O"
+ DEBUG_FFLAGS="-O"
+ PROD_FFLAGS="-O"
+ PROFILE_FFLAGS="-O"
+ f9x_flags_set=yes
+fi