summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2021-01-08 12:52:08 (GMT)
committerGitHub <noreply@github.com>2021-01-08 12:52:08 (GMT)
commit9e1739f76f42d5849a069a8ac86125a5f1d23edb (patch)
treef47cd81cc4750b89f444e1a704d78e327a10f0bb /release_docs
parente3b7d68826b5ce54518220d80dfb723f04c7b486 (diff)
downloadhdf5-9e1739f76f42d5849a069a8ac86125a5f1d23edb.zip
hdf5-9e1739f76f42d5849a069a8ac86125a5f1d23edb.tar.gz
hdf5-9e1739f76f42d5849a069a8ac86125a5f1d23edb.tar.bz2
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
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/RELEASE.txt11
1 files changed, 10 insertions, 1 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 053d321..f64fe74 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -762,7 +762,16 @@ Bug Fixes since HDF5-1.12.0 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