mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[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)
This commit is contained in:
parent
c2472b4d00
commit
b96e13a7e3
@ -32,18 +32,6 @@ if (HDF5_METADATA_TRACE_FILE)
|
||||
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
|
||||
|
@ -644,9 +644,6 @@
|
||||
don't fit into size allowed */
|
||||
#cmakedefine H5_VSNPRINTF_WORKS @H5_VSNPRINTF_WORKS@
|
||||
|
||||
/* 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@
|
||||
|
||||
|
30
configure
vendored
30
configure
vendored
@ -916,7 +916,6 @@ with_mpe
|
||||
enable_direct_vfd
|
||||
with_default_plugindir
|
||||
enable_dconv_exception
|
||||
enable_dconv_accuracy
|
||||
enable_build_all
|
||||
enable_deprecated_symbols
|
||||
with_default_api_version
|
||||
@ -1614,8 +1613,6 @@ Optional Features:
|
||||
--enable-dconv-exception
|
||||
if exception handling functions is checked during
|
||||
data conversions [default=yes]
|
||||
--enable-dconv-accuracy if data accuracy is guaranteed during data
|
||||
conversions [default=yes]
|
||||
--enable-build-all Build helper programs that only developers should
|
||||
need [default=no]
|
||||
--enable-deprecated-symbols
|
||||
@ -28048,33 +28045,6 @@ else
|
||||
$as_echo "no" >&6; }
|
||||
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.
|
||||
##
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether data accuracy is guaranteed during data conversions" >&5
|
||||
$as_echo_n "checking whether data accuracy is guaranteed during data conversions... " >&6; }
|
||||
# Check whether --enable-dconv-accuracy was given.
|
||||
if test "${enable_dconv_accuracy+set}" = set; then :
|
||||
enableval=$enable_dconv_accuracy; DATA_ACCURACY=$enableval
|
||||
else
|
||||
DATA_ACCURACY=yes
|
||||
fi
|
||||
|
||||
|
||||
if test "$DATA_ACCURACY" = "yes"; then
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||
$as_echo "yes" >&6; }
|
||||
|
||||
$as_echo "#define WANT_DATA_ACCURACY 1" >>confdefs.h
|
||||
|
||||
else
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||
$as_echo "no" >&6; }
|
||||
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:/").
|
||||
|
21
configure.ac
21
configure.ac
@ -2500,27 +2500,6 @@ else
|
||||
AC_MSG_RESULT([no])
|
||||
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:/").
|
||||
|
@ -574,7 +574,6 @@ HDF5_STRICT_FORMAT_CHECKS "Whether to perform strict file format checks"
|
||||
HDF5_TEST_VFD "Execute tests with different VFDs" OFF
|
||||
HDF5_USE_16_API_DEFAULT "Use the HDF5 1.6.x API by default" OFF
|
||||
HDF5_USE_FOLDERS "Enable folder grouping of projects in IDEs." OFF
|
||||
HDF5_WANT_DATA_ACCURACY "IF data accuracy is guaranteed during data conversions" ON
|
||||
HDF5_WANT_DCONV_EXCEPTION "exception handling functions is checked during data conversions" ON
|
||||
HDF5_ENABLE_THREADSAFE "Enable Threadsafety" OFF
|
||||
if (APPLE)
|
||||
|
@ -552,9 +552,6 @@
|
||||
don't fit into size allowed */
|
||||
#undef VSNPRINTF_WORKS
|
||||
|
||||
/* Data accuracy is prefered to speed during data conversions */
|
||||
#undef WANT_DATA_ACCURACY
|
||||
|
||||
/* Check exception handling functions during data conversions */
|
||||
#undef WANT_DCONV_EXCEPTION
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user