diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2010-04-27 20:55:33 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2010-04-27 20:55:33 (GMT) |
commit | 53f5793d38fe137cd32fec38f8686bd21452d46f (patch) | |
tree | b2ea9ba3ada92536c9244d3e0380f58f6ddd9f2e /configure.in | |
parent | 8b93f9640ece907960efb056a1b09bad2580c37e (diff) | |
download | hdf5-53f5793d38fe137cd32fec38f8686bd21452d46f.zip hdf5-53f5793d38fe137cd32fec38f8686bd21452d46f.tar.gz hdf5-53f5793d38fe137cd32fec38f8686bd21452d46f.tar.bz2 |
[svn-r18646] In H5T_get_native_type of H5Tnative.c, I changed the way that the offset, alignment, and
size of nested compound type are calculated by using H5T_cmp_offset. The old way had a bug
in it (see bug #1850).
Tested on amani, linew, and jam.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 3149713..a1d77ac 100644 --- a/configure.in +++ b/configure.in @@ -3415,6 +3415,9 @@ if test ${ac_cv_sizeof_long_double} = 0; then else AC_CACHE_VAL([hdf5_cv_ullong_to_ldouble_precision], [AC_TRY_RUN([ + #include <stdlib.h> + #include <string.h> + int main(void) { /* General variables */ |