summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-03-27 21:30:14 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-03-27 21:30:14 (GMT)
commitb96e13a7e3476e86056a1c5424288b50001b0453 (patch)
treece8d0c2189ac27332bcafe0dcb91eaadd8f68441 /configure.ac
parentc2472b4d006b6d036ec9e037fa5c677f71e9ac25 (diff)
downloadhdf5-b96e13a7e3476e86056a1c5424288b50001b0453.zip
hdf5-b96e13a7e3476e86056a1c5424288b50001b0453.tar.gz
hdf5-b96e13a7e3476e86056a1c5424288b50001b0453.tar.bz2
[svn-r26627] Description:
Bring r26545 from autotools_rework branch to trunk: Remove the WANT_DATA_ACCURACY macro/define/configure option, since it's no longer attached to any library behavior. Tested on: Linux/32 2.6.8 (jam) w/serial & parallel (Daily tested on branch for 2+ days)
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 bba80ff..002c9e3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2501,27 +2501,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