summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2005-08-30 15:11:08 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2005-08-30 15:11:08 (GMT)
commit336716e427cf7fd7f8f11affbc95bee09d7b10bb (patch)
tree8e9e7afa609e25182d31318dc355a4b988cc959c /configure.in
parentec65db7972421b5d4a5b2f23db09ba210d3dd606 (diff)
downloadhdf5-336716e427cf7fd7f8f11affbc95bee09d7b10bb.zip
hdf5-336716e427cf7fd7f8f11affbc95bee09d7b10bb.tar.gz
hdf5-336716e427cf7fd7f8f11affbc95bee09d7b10bb.tar.bz2
[svn-r11315] Purpose: Minor change on feature.
Description: Changed the configuration options --enable-exception and --enable-accuracy checked in yesterday to --enable-dconv-exception and --enable-dconv-accuracy to be more descriptive. Platforms tested: fuss - simple change.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index cb5aedf..d72ea3a 100644
--- a/configure.in
+++ b/configure.in
@@ -2363,8 +2363,8 @@ dnl for the speed optimization of hard conversions. Soft conversions can
dnl actually benefit little.
dnl
AC_MSG_CHECKING([whether exception handling functions is checked during data conversions])
-AC_ARG_ENABLE([exception],
- [AC_HELP_STRING([--enable-exception],
+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=yes])
@@ -2384,8 +2384,8 @@ dnl though the data may be wrong (for example, some compilers don't
dnl support denormalized floating values) to maximize speed.
dnl
AC_MSG_CHECKING([whether data accuracy is guaranteed during data conversions])
-AC_ARG_ENABLE([accuracy],
- [AC_HELP_STRING([--enable-accuracy],
+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=yes])