summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2015-09-10 03:47:01 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2015-09-10 03:47:01 (GMT)
commitb6a34fb182be882f2f494a86cd23d0e732d656e7 (patch)
treed9cba70446576f1db7bc4ba8fe44314ec8e8c435 /config
parent7655dd3b0fd82bac9d187b16497784267cfc5b9b (diff)
downloadhdf5-b6a34fb182be882f2f494a86cd23d0e732d656e7.zip
hdf5-b6a34fb182be882f2f494a86cd23d0e732d656e7.tar.gz
hdf5-b6a34fb182be882f2f494a86cd23d0e732d656e7.tar.bz2
[svn-r27737] Merge of r26627 from trunk
Remove the WANT_DATA_ACCURACY macro/define/configure option, since it's no longer attached to any library behavior. Tested on: jam (has baked in the trunk for over 6 months)
Diffstat (limited to 'config')
-rw-r--r--config/cmake/ConfigureChecks.cmake12
-rw-r--r--config/cmake/H5pubconf.h.in3
2 files changed, 0 insertions, 15 deletions
diff --git a/config/cmake/ConfigureChecks.cmake b/config/cmake/ConfigureChecks.cmake
index 38dd50f..9583eef 100644
--- a/config/cmake/ConfigureChecks.cmake
+++ b/config/cmake/ConfigureChecks.cmake
@@ -33,18 +33,6 @@ endif (HDF5_METADATA_TRACE_FILE)
MARK_AS_ADVANCED (HDF5_METADATA_TRACE_FILE)
# ----------------------------------------------------------------------
-# Decide whether the data accuracy has higher priority during data
-# conversions. If not, some hard conversions will still be prefered even
-# though the data may be wrong (for example, some compilers don't
-# support denormalized floating values) to maximize speed.
-#
-option (HDF5_WANT_DATA_ACCURACY "IF data accuracy is guaranteed during data conversions" ON)
-if (HDF5_WANT_DATA_ACCURACY)
- set (H5_WANT_DATA_ACCURACY 1)
-endif (HDF5_WANT_DATA_ACCURACY)
-MARK_AS_ADVANCED (HDF5_WANT_DATA_ACCURACY)
-
-# ----------------------------------------------------------------------
# Decide whether the presence of user's exception handling functions is
# checked and data conversion exceptions are returned. This is mainly
# for the speed optimization of hard conversions. Soft conversions can
diff --git a/config/cmake/H5pubconf.h.in b/config/cmake/H5pubconf.h.in
index e1eb57e..cbfe775 100644
--- a/config/cmake/H5pubconf.h.in
+++ b/config/cmake/H5pubconf.h.in
@@ -582,9 +582,6 @@
/* Version number of package */
#define H5_VERSION "@HDF5_PACKAGE_VERSION_STRING@"
-/* Data accuracy is prefered to speed during data conversions */
-#cmakedefine H5_WANT_DATA_ACCURACY @H5_WANT_DATA_ACCURACY@
-
/* Check exception handling functions during data conversions */
#cmakedefine H5_WANT_DCONV_EXCEPTION @H5_WANT_DCONV_EXCEPTION@