diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2015-01-27 21:35:30 (GMT) |
---|---|---|
committer | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2015-01-27 21:35:30 (GMT) |
commit | f142970ac2f2908408f2452eb067b6f3abc0d65a (patch) | |
tree | f723914aa404fad25ab04f9c88de21c03863c8b3 /configure.ac | |
parent | 06587c6e91e234229d2c00274aae9312df282d3f (diff) | |
download | hdf5-f142970ac2f2908408f2452eb067b6f3abc0d65a.zip hdf5-f142970ac2f2908408f2452eb067b6f3abc0d65a.tar.gz hdf5-f142970ac2f2908408f2452eb067b6f3abc0d65a.tar.bz2 |
[svn-r26059] Fix for: HDFFV-9095
4159:: Check if Fortran's default real is double precision. If it is and HL is being built then configure should fail due to bug HDFFV-889.
Fix:
This check should be located where HL is check for, and it is. Updated the comment to elimenate confusion.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 088ced8..ce82c0f 100644 --- a/configure.ac +++ b/configure.ac @@ -3786,7 +3786,7 @@ if test "X$HDF5_HL" = "Xyes"; then AC_DEFINE([INCLUDE_HL], [1], [Define if HDF5's high-level library headers should be included in hdf5.h]) -## Check if Fortran's default real is double precision. If it is and HL is being built then configure +## If Fortran's default real is double precision and HL is being built then configure ## should fail due to bug HDFFV-889. if test "X$FORTRAN_DEFAULT_REALisDBLE" = "Xyes"; then AC_MSG_ERROR([Fortran high-level routines are not supported when the default REAL is DOUBLE PRECISION, use configure option --disable-hl.]) |