diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2010-04-27 21:35:53 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2010-04-27 21:35:53 (GMT) |
commit | 6c5e42a96720ccd4c7b517af8c00c658112dc7af (patch) | |
tree | 551e515bd01f54601d530b425d45d263b5f1acb8 /configure | |
parent | daddb56a02bb6503e57993631e70836a10b5d9f2 (diff) | |
download | hdf5-6c5e42a96720ccd4c7b517af8c00c658112dc7af.zip hdf5-6c5e42a96720ccd4c7b517af8c00c658112dc7af.tar.gz hdf5-6c5e42a96720ccd4c7b517af8c00c658112dc7af.tar.bz2 |
[svn-r18648] 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 jam. I tested the same change for 1.8 on amani, linew, and jam.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Id: configure.in 18589 2010-04-18 13:59:45Z hdftest . +# From configure.in Id: configure.in 18634 2010-04-27 18:25:31Z koziol . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.65 for HDF5 1.9.68. # @@ -27594,6 +27594,9 @@ else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ + #include <stdlib.h> + #include <string.h> + int main(void) { /* General variables */ |