summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-03-23 20:00:41 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-03-23 20:00:41 (GMT)
commit96690845c150eadb288b98220e3a6d7ded244f3b (patch)
treed8109ddb15468959b8f171188013bbda281042cb /configure.ac
parentfe435e3dd4d03524a5387cd7e872350a314c3d92 (diff)
downloadhdf5-96690845c150eadb288b98220e3a6d7ded244f3b.zip
hdf5-96690845c150eadb288b98220e3a6d7ded244f3b.tar.gz
hdf5-96690845c150eadb288b98220e3a6d7ded244f3b.tar.bz2
[svn-r26545] Description:
Remove the WANT_DATA_ACCURACY macro/define/configure option, since it's no longer attached to any library behavior. Tested on: MacOSX/64 10.10.2 (amazon) w/serial & parallel (h5committest not required on this branch)
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac21
1 files changed, 0 insertions, 21 deletions
diff --git a/configure.ac b/configure.ac
index 1069b60..4905ab8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2369,27 +2369,6 @@ else
fi
## ----------------------------------------------------------------------
-## 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.
-##
-AC_MSG_CHECKING([whether data accuracy is guaranteed during data conversions])
-AC_ARG_ENABLE([dconv-accuracy],
- [AS_HELP_STRING([--enable-dconv-accuracy],
- [if data accuracy is guaranteed during
- data conversions [default=yes]])],
- [DATA_ACCURACY=$enableval], [DATA_ACCURACY=yes])
-
-if test "$DATA_ACCURACY" = "yes"; then
- AC_MSG_RESULT([yes])
- AC_DEFINE([WANT_DATA_ACCURACY], [1],
- [Data accuracy is prefered to speed during data conversions])
-else
- AC_MSG_RESULT([no])
-fi
-
-## ----------------------------------------------------------------------
## Set the flag to indicate that the machine has window style pathname,
## that is, "drive-letter:\" (e.g. "C:") or "drive-letter:/" (e.g. "C:/").
## (This flag should be _unset_ for all machines, except for Windows, where