diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2004-05-12 21:43:12 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2004-05-12 21:43:12 (GMT) |
commit | 831c8d9dfd53ca3d063c3c3f545aed57bcc78613 (patch) | |
tree | 2a32f100c39373cb8c6da76d3950925ec34e354d | |
parent | 13678f745b0051172587a15d79ea7c0c0f5a1d8c (diff) | |
download | hdf5-831c8d9dfd53ca3d063c3c3f545aed57bcc78613.zip hdf5-831c8d9dfd53ca3d063c3c3f545aed57bcc78613.tar.gz hdf5-831c8d9dfd53ca3d063c3c3f545aed57bcc78613.tar.bz2 |
[svn-r8508] Purpose: Bug fix
Description: Somehow part of dtypes.c were wiped out by the change yesterday,
causing failure on verbena's PGI compiler. Another issue is to run autoheader
to generate H5config.h.in.
Platforms tested: verbena(changes only matter to it)
-rw-r--r-- | src/H5config.h.in | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/H5config.h.in b/src/H5config.h.in index 7ed02b0..48af1ba 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -7,6 +7,14 @@ /* Define if `dev_t' is a scalar */ #undef DEV_T_IS_SCALAR +/* Define if your system roundup accurately convert floating-point to unsigned + long long values. */ +#undef FP_TO_ULLONG_BOTTOM_BIT_WORKS + +/* Define if your system has right maximum convert floating-point to unsigned + long long values. */ +#undef FP_TO_ULLONG_RIGHT_MAXIMUM + /* Define if the __attribute__(()) extension is present */ #undef HAVE_ATTRIBUTE @@ -505,14 +513,6 @@ floating-point values. */ #undef SW_ULONG_TO_FP_BOTTOM_BIT_WORKS -/* Define if your system can roundup accurately convert unsigned long long values to - floating-point values. */ -#undef FP_TO_ULLONG_BOTTOM_BIT_WORKS - -/* Define if the maximal number is right on your system convert unsigned long long values to - floating-point values. */ -#undef FP_TO_ULLONG_RIGHT_MAXIMUM - /* Define if your system supports pthread_attr_setscope(&attribute, PTHREAD_SCOPE_SYSTEM) call. */ #undef SYSTEM_SCOPE_THREADS |