diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2005-01-14 20:15:34 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2005-01-14 20:15:34 (GMT) |
commit | 105bee4ead610d183af62e08b4f7c219ba0ea6a9 (patch) | |
tree | 5f2525c1045a9dfa3f8731b84bedfa0b80ad3e4e /src/H5config.h.in | |
parent | 23130b569c3846a1fd098841bb2f9912dd9040de (diff) | |
download | hdf5-105bee4ead610d183af62e08b4f7c219ba0ea6a9.zip hdf5-105bee4ead610d183af62e08b4f7c219ba0ea6a9.tar.gz hdf5-105bee4ead610d183af62e08b4f7c219ba0ea6a9.tar.bz2 |
[svn-r9826] Purpose: Bug fix
Description: Intel compiler on Linux has some problem to convert long double to
unsigned int correctly.
Solution: Detect the problem in configure and define a macro to skip this test
if it happens.
Platforms tested: eirene and fuss. Simple change.
Diffstat (limited to 'src/H5config.h.in')
-rw-r--r-- | src/H5config.h.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5config.h.in b/src/H5config.h.in index aa30b7b..6edc4fd 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -4,6 +4,10 @@ values. */ #undef CONVERT_DENORMAL_FLOAT +/* Define if your system can convert long double to unsigned int values + correctly. */ +#undef CV_LDOUBLE_TO_UINT_WORKS + /* Define if `dev_t' is a scalar */ #undef DEV_T_IS_SCALAR |