diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2005-01-06 23:06:34 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2005-01-06 23:06:34 (GMT) |
commit | 78293f94d7f581803bf35e0c9686e74250ae5e18 (patch) | |
tree | 791cdb0df1c295eefdd57747de7857b23ee3dd3a /src | |
parent | 60316f893ad98c1faa45d3e319c506c7c3b247da (diff) | |
download | hdf5-78293f94d7f581803bf35e0c9686e74250ae5e18.zip hdf5-78293f94d7f581803bf35e0c9686e74250ae5e18.tar.gz hdf5-78293f94d7f581803bf35e0c9686e74250ae5e18.tar.bz2 |
[svn-r9767] Purpose: Bug fix
Description: 2 small things to correct:
1. the change in H5config.h.in was wept out by a later change.
2. long long isn't supported on Windows. It's long_long instead.
Platforms tested: fuss(linux 2.4)
Diffstat (limited to 'src')
-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 a345d85..7fb77be 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -519,6 +519,10 @@ /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS +/* Define if your system can accurately convert between long double and + integer values. */ +#undef SW_LDOUBLE_TO_INT_WORKS + /* Define if your system can accurately convert unsigned long long values to floating-point values. */ #undef SW_ULONG_TO_FP_BOTTOM_BIT_WORKS |