diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2006-03-22 21:41:28 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2006-03-22 21:41:28 (GMT) |
commit | cbfc669139d2f205a280fbf1c4c877025d22720b (patch) | |
tree | d8d1720b245d6074e82165ab118efcc4173071b4 /vms/src | |
parent | 1b60c48c1dfc5df63521d22431879414d0d8d426 (diff) | |
download | hdf5-cbfc669139d2f205a280fbf1c4c877025d22720b.zip hdf5-cbfc669139d2f205a280fbf1c4c877025d22720b.tar.gz hdf5-cbfc669139d2f205a280fbf1c4c877025d22720b.tar.bz2 |
[svn-r12136] Purpose: Update
Description: A few macro names have been changed. Enabled a few for test.
Platforms tested: OpenVMS - the only concerned machine.
Misc. update:
Diffstat (limited to 'vms/src')
-rw-r--r-- | vms/src/h5pubconf.h | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/vms/src/h5pubconf.h b/vms/src/h5pubconf.h index c04d334..023b266 100644 --- a/vms/src/h5pubconf.h +++ b/vms/src/h5pubconf.h @@ -503,15 +503,22 @@ /* Define if your system can accurately convert from integers to long double values. */ -#define H5_SW_INTEGER_TO_LDOUBLE_WORKS 1 +#define H5_INTEGER_TO_LDOUBLE_ACCURATE 1 + +/* Define if your system can convert long double to integers accurately. */ +#define H5_LDOUBLE_TO_INTEGER_ACCURATE 1 /* Define if your system can accurately convert from long double to integer values. */ -#define H5_SW_LDOUBLE_TO_INTEGER_WORKS 1 +#define H5_LDOUBLE_TO_INTEGER_WORKS 1 + +/* Define if your system can convert long double to unsigned int values + correctly. */ +#define H5_LDOUBLE_TO_UINT_ACCURATE 1 /* Define if your system can accurately convert unsigned (long) long values to floating-point values. */ -#define H5_SW_ULONG_TO_FP_BOTTOM_BIT_WORKS 1 +#define H5_ULONG_TO_FP_BOTTOM_BIT_WORKS 1 /* Define if your system supports pthread_attr_setscope(&attribute, PTHREAD_SCOPE_SYSTEM) call. */ @@ -529,7 +536,7 @@ /* Define if your system can convert unsigned long long to long double with correct precision. */ -#define H5_ULLONG_TO_LDOUBLE_PRECISION_WORKS 1 +#define H5_ULLONG_TO_LDOUBLE_PRECISION 1 /* Version number of package */ #define H5_VERSION "1.7.51" @@ -562,5 +569,7 @@ /* Define to `long' if <sys/types.h> does not define. */ /* #undef H5_ssize_t */ -# define H5_HAVE_FILE_VERSIONS 1 -# define H5_CANNOT_OPEN_TWICE 1 +#define H5_HAVE_FILE_VERSIONS 1 +#define H5_CANNOT_OPEN_TWICE 1 +#define H5_WANT_DATA_ACCURACY 1 +#define H5_WANT_DCONV_EXCEPTION 1 |