summaryrefslogtreecommitdiffstats
path: root/m4
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2015-04-21 16:53:40 (GMT)
committerScot Breitenfeld <brtnfld@hdfgroup.org>2015-04-21 16:53:40 (GMT)
commit6813b25007280afa9b8bec13c19c134029acd26c (patch)
treef2462aa00644888fa0798b11125bf8be29726339 /m4
parentc88f2abea5c4295cd20564fede8b3010933c0e6f (diff)
downloadhdf5-6813b25007280afa9b8bec13c19c134029acd26c.zip
hdf5-6813b25007280afa9b8bec13c19c134029acd26c.tar.gz
hdf5-6813b25007280afa9b8bec13c19c134029acd26c.tar.bz2
[svn-r26866] Removed the default REAL and DOUBLE PRECESION dependency.
Diffstat (limited to 'm4')
-rw-r--r--m4/aclocal_fc.m433
1 files changed, 0 insertions, 33 deletions
diff --git a/m4/aclocal_fc.m4 b/m4/aclocal_fc.m4
index cda2fee..c177143 100644
--- a/m4/aclocal_fc.m4
+++ b/m4/aclocal_fc.m4
@@ -111,39 +111,6 @@ AC_DEFUN([PAC_PROG_FC_STORAGE_SIZE],[
])
-dnl Check to see if -r8 was specified to determine if we need to
-dnl compile the DOUBLE PRECISION interfaces.
-
-AC_DEFUN([PAC_PROG_FC_DEFAULT_REALisDBLE],[
- FORTRAN_DEFAULT_REALisDBLE="no"
- AC_MSG_CHECKING([if Fortran default REAL is DOUBLE PRECISION])
-
- AC_COMPILE_IFELSE([AC_LANG_SOURCE([
- MODULE type_mod
- INTERFACE h5t
- MODULE PROCEDURE h5t_real
- MODULE PROCEDURE h5t_dble
- END INTERFACE
- CONTAINS
- SUBROUTINE h5t_real(r)
- REAL :: r
- END SUBROUTINE h5t_real
- SUBROUTINE h5t_dble(d)
- DOUBLE PRECISION :: d
- END SUBROUTINE h5t_dble
- END MODULE type_mod
- PROGRAM main
- USE type_mod
- REAL :: r
- DOUBLE PRECISION :: d
- CALL h5t(r)
- CALL h5t(d)
- END PROGRAM main
- ])], [AC_MSG_RESULT([no])],
- [AC_MSG_RESULT([yes])
- FORTRAN_DEFAULT_REALisDBLE="yes"])
-])
-
dnl Checking if the compiler supports the required Fortran 2003 features and
dnl disable Fortran 2003 if it does not.