diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2015-08-27 15:36:25 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2015-08-27 15:36:25 (GMT) |
commit | 01a1e8f1caa498993f707b692f27bac82ba18470 (patch) | |
tree | 51aef6250b5fcf997641ae61f2dbc1497980840b | |
parent | c491cf01bf8ca63cc3c3d8cad1f239975cc344dc (diff) | |
download | hdf5-01a1e8f1caa498993f707b692f27bac82ba18470.zip hdf5-01a1e8f1caa498993f707b692f27bac82ba18470.tar.gz hdf5-01a1e8f1caa498993f707b692f27bac82ba18470.tar.bz2 |
[svn-r27591] Threadsafe option implementation has changed and ALLOWUNSUPPORTED option needs to be used with TS to actually use of TS with Fortran and C++.
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 5a1f68c..c75114e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -554,14 +554,16 @@ if (WIN32) endif (HDF5_ENABLE_PARALLEL) if (HDF5_BUILD_FORTRAN) if (NOT ALLOW_UNSUPPORTED) - message (FATAL_ERROR " **** Fortran and thread-safety options are not supported **** ") + message (STATUS " **** Fortran and thread-safety options are not supported **** ") + message (STATUS " **** thread-safety option will not be used building Fortran library **** ") else (NOT ALLOW_UNSUPPORTED) message (STATUS " **** Allowing unsupported Fortran and thread-safety options **** ") endif (NOT ALLOW_UNSUPPORTED) endif (HDF5_BUILD_FORTRAN) if (HDF5_BUILD_CPP_LIB) if (NOT ALLOW_UNSUPPORTED) - message (FATAL_ERROR " **** C++ and thread-safety options are not supported **** ") + message (STATUS " **** C++ and thread-safety options are not supported **** ") + message (STATUS " **** thread-safety option will not be used building C++ library **** ") else (NOT ALLOW_UNSUPPORTED) message (STATUS " **** Allowing unsupported C++ and thread-safety options **** ") endif (NOT ALLOW_UNSUPPORTED) |