summaryrefslogtreecommitdiffstats
path: root/release_docs/RELEASE.txt
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2015-08-03 21:04:29 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2015-08-03 21:04:29 (GMT)
commitff5070329c34c74082570c925e2a2b9089b99b29 (patch)
tree5337fe5780e5afed0c9431969972ab2126d586c1 /release_docs/RELEASE.txt
parentb94c3d53d2354f7e4552a72b1d82b57ec40fd93e (diff)
downloadhdf5-ff5070329c34c74082570c925e2a2b9089b99b29.zip
hdf5-ff5070329c34c74082570c925e2a2b9089b99b29.tar.gz
hdf5-ff5070329c34c74082570c925e2a2b9089b99b29.tar.bz2
[svn-r27457] Merge of r27278 from trunk. Fixes HDFFV-9119 and HDFFV-9421.
Changes that allow the autotools to correctly deal with inline functions. - Inline markup schemes are now checked with AC_COMPILE_IFELSE tests instead of AC_C_INLINE. - The inline designator is now H5_INLINE instead of H5_inline. This is now set in H5private.h instead of H5pubconf.h. Tested on: h5committest
Diffstat (limited to 'release_docs/RELEASE.txt')
-rw-r--r--release_docs/RELEASE.txt15
1 files changed, 13 insertions, 2 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index bb86225..be0080d 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -57,8 +57,19 @@ New Features
Configuration
-------------
- -
- (XYZ - YYYY/MM/DD HDFFV-####)
+ - Inline functions now correctly annotated w/ Autotools builds.
+
+ The method used to detect the appropriate inline markup scheme was
+ nonfunctional in Autotools builds. The Autotools have been modified
+ to correctly detect the compiler's inline markup symbol and apply it
+ to the source. Note that only a very small number of internal
+ functions are marked inline so this was not a very big change or
+ likely to significantly affect performance.
+
+ As a part of this change, the H5_inline symbol no longer appears in
+ H5pubconf.h.
+
+ (DER - 2015/08/13 HDFFV-9119, HDFFV-9421)