diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2014-08-11 14:17:09 (GMT) |
---|---|---|
committer | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2014-08-11 14:17:09 (GMT) |
commit | 05df796d6a8afcfc092e64e408e44b3ab3c4aa89 (patch) | |
tree | 44fe681f2beaec28591ad92fdca1a1684ca83757 | |
parent | 8fc11e6bc86da07802f3d647396eba691cfae566 (diff) | |
download | hdf5-05df796d6a8afcfc092e64e408e44b3ab3c4aa89.zip hdf5-05df796d6a8afcfc092e64e408e44b3ab3c4aa89.tar.gz hdf5-05df796d6a8afcfc092e64e408e44b3ab3c4aa89.tar.bz2 |
[svn-r25526] Merged 25480 from the trunk into the branch
-rw-r--r-- | CMakeLists.txt | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9667dcf..8b8d5c7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -693,7 +693,6 @@ if (NOT HDF5_EXTERNALLY_CONFIGURED) endif (HDF5_ENABLE_SZIP_SUPPORT AND SZIP_FOUND) endif (HDF5_PACKAGE_EXTLIBS) endif (NOT HDF5_EXTERNALLY_CONFIGURED) - #----------------------------------------------------------------------------- # Option to use threadsafe # Note: Currently CMake only allows configuring of threadsafe on @@ -860,6 +859,16 @@ if (EXISTS "${HDF5_SOURCE_DIR}/hl" AND IS_DIRECTORY "${HDF5_SOURCE_DIR}/hl") endif (EXISTS "${HDF5_SOURCE_DIR}/hl" AND IS_DIRECTORY "${HDF5_SOURCE_DIR}/hl") #----------------------------------------------------------------------------- +# 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. +#----------------------------------------------------------------------------- + if (HDF5_BUILD_FORTRAN AND HDF5_BUILD_HL_LIB ) + if (NOT FORTRAN_DEFAULT_REAL_NOT_DOUBLE) + message (FATAL_ERROR " **** Fortran high-level routines are not supported when the default REAL is DOUBLE PRECISION, use HDF5_BUILD_HL_LIB:BOOL=OFF **** ") + endif (NOT FORTRAN_DEFAULT_REAL_NOT_DOUBLE) + endif (HDF5_BUILD_FORTRAN AND HDF5_BUILD_HL_LIB ) + +#----------------------------------------------------------------------------- # Generate the H5pubconf.h file containing user settings needed by compilation #----------------------------------------------------------------------------- configure_file (${HDF_RESOURCES_DIR}/H5pubconf.h.in ${HDF5_BINARY_DIR}/H5pubconf.h @ONLY) |