diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2024-03-15 12:41:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-15 12:41:07 (GMT) |
commit | c7c8b93d06fd2c99dee523a11a2d62eb4dfaed74 (patch) | |
tree | a6e9fdab06f462e270500310823ffb74f74a73cb /release_docs/RELEASE.txt | |
parent | ece121b415a69e159f3143e2348b7c580adbd054 (diff) | |
download | hdf5-c7c8b93d06fd2c99dee523a11a2d62eb4dfaed74.zip hdf5-c7c8b93d06fd2c99dee523a11a2d62eb4dfaed74.tar.gz hdf5-c7c8b93d06fd2c99dee523a11a2d62eb4dfaed74.tar.bz2 |
Fix Autotools -Werror cleanup (#4144)
The Autotools temporarily scrub -Werror(=whatever) from CFLAGS, etc.
so configure checks don't trip over warnings generated by configure
check programs. The sed line originally only scrubbed -Werror but not
-Werror=something, which would cause errors when the '=something' was
left behind in CFLAGS.
The sed line has been updated to handle -Werror=something lines.
Fixes one issue raised in #3872
Diffstat (limited to 'release_docs/RELEASE.txt')
-rw-r--r-- | release_docs/RELEASE.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 4c6367e..688762e 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -575,6 +575,20 @@ Support for new platforms, languages and compilers Bug Fixes since HDF5-1.14.0 release =================================== + Configuration: + ------------- + - Fix Autotools -Werror cleanup + + The Autotools temporarily scrub -Werror(=whatever) from CFLAGS, etc. + so configure checks don't trip over warnings generated by configure + check programs. The sed line originally only scrubbed -Werror but not + -Werror=something, which would cause errors when the '=something' was + left behind in CFLAGS. + + The sed line has been updated to handle -Werror=something lines. + + Fixes one issue raised in #3872 + Library ------- - Fixed asserts raised by large values of H5Pset_est_link_info() parameters |