diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2021-01-11 02:29:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-11 02:29:34 (GMT) |
commit | ef6421ffc7809a0670836f68f5163c6ee33726d0 (patch) | |
tree | 86a1e19ecc218ed2ea2a8036d329ed2ea55a727a /release_docs | |
parent | 0a7296663b49ce4710ebe57a7ceae21fa3571ff1 (diff) | |
download | hdf5-ef6421ffc7809a0670836f68f5163c6ee33726d0.zip hdf5-ef6421ffc7809a0670836f68f5163c6ee33726d0.tar.gz hdf5-ef6421ffc7809a0670836f68f5163c6ee33726d0.tar.bz2 |
Stat st blocks fix 110 (#249)
* close #195. (#196)
* Update HDF5PluginMacros.cmake
* Update HDF5PluginMacros.cmake
* Modify temporary rpath for testing in java example scripts. (#230)
* Fixes Autotools detection of the st_blocks field in stat (#246)
* Fixes Autotools detection of the st_blocks field in stat
The Autotools and CMake will now both correctly determine if the
stat struct has the st_blocks field and set H5_HAVE_STAT_ST_BLOCKS
appropriately.
* Fixes a typo in configure.ac
Co-authored-by: H. Joe Lee <hyoklee@hdfgroup.org>
Co-authored-by: Dana Robinson <43805+derobins@users.noreply.github.com>
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 8b26c70..c69f1ed 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -183,7 +183,16 @@ Bug Fixes since HDF5-1.10.7 release Configuration ------------- - - + - Fixes Autotools determination of the stat struct having an st_blocks field + + A missing parenthesis in an autoconf macro prevented building the test + code used to determine if the stat struct contains the st_blocks field. + Now that the test functions correctly, the H5_HAVE_STAT_ST_BLOCKS #define + found in H5pubconf.h will be defined correctly on both the Autotools and + CMake. This #define is only used in the tests and does not affect the + HDF5 C library. + + (DER - 2021/07/01, HDFFV-11201) Performance ------------- |