mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-24 15:25:00 +08:00
[svn-r11333] Purpose: Change configure's default.
Description: Changed configure's default disable-dconv-exception and disable-dconv-accuracy back to enable-dconv-exception and enable-dconv-accuracy. The test has been finished. Platforms tested: fuss - tested before.
This commit is contained in:
parent
572688a4e5
commit
a5f1aa713f
4
configure
vendored
4
configure
vendored
@ -50009,7 +50009,7 @@ if test "${enable_dconv_exception+set}" = set; then
|
||||
enableval="$enable_dconv_exception"
|
||||
DCONV_EXCEPTION=$enableval
|
||||
else
|
||||
DCONV_EXCEPTION=no
|
||||
DCONV_EXCEPTION=yes
|
||||
fi;
|
||||
|
||||
if test "$DCONV_EXCEPTION" = "yes"; then
|
||||
@ -50032,7 +50032,7 @@ if test "${enable_dconv_accuracy+set}" = set; then
|
||||
enableval="$enable_dconv_accuracy"
|
||||
DATA_ACCURACY=$enableval
|
||||
else
|
||||
DATA_ACCURACY=no
|
||||
DATA_ACCURACY=yes
|
||||
fi;
|
||||
|
||||
if test "$DATA_ACCURACY" = "yes"; then
|
||||
|
@ -2367,7 +2367,7 @@ AC_ARG_ENABLE([dconv-exception],
|
||||
[AC_HELP_STRING([--enable-dconv-exception],
|
||||
[if exception handling functions is checked during
|
||||
data conversions [default=yes]])],
|
||||
[DCONV_EXCEPTION=$enableval], [DCONV_EXCEPTION=no])
|
||||
[DCONV_EXCEPTION=$enableval], [DCONV_EXCEPTION=yes])
|
||||
|
||||
if test "$DCONV_EXCEPTION" = "yes"; then
|
||||
AC_MSG_RESULT([yes])
|
||||
@ -2388,7 +2388,7 @@ AC_ARG_ENABLE([dconv-accuracy],
|
||||
[AC_HELP_STRING([--enable-dconv-accuracy],
|
||||
[if data accuracy is guaranteed during
|
||||
data conversions [default=yes]])],
|
||||
[DATA_ACCURACY=$enableval], [DATA_ACCURACY=no])
|
||||
[DATA_ACCURACY=$enableval], [DATA_ACCURACY=yes])
|
||||
|
||||
if test "$DATA_ACCURACY" = "yes"; then
|
||||
AC_MSG_RESULT([yes])
|
||||
|
Loading…
Reference in New Issue
Block a user