diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-03-10 07:41:24 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-03-10 07:41:24 (GMT) |
commit | 4a2a4bd95b8c0ce284f428be5ddcf937b5ce7662 (patch) | |
tree | 6015f9f170222985c5d1efacb9396c629c18cb43 /release_docs | |
parent | 6b1176f34e780cd597f32991ae3952ea371c66fe (diff) | |
download | hdf5-4a2a4bd95b8c0ce284f428be5ddcf937b5ce7662.zip hdf5-4a2a4bd95b8c0ce284f428be5ddcf937b5ce7662.tar.gz hdf5-4a2a4bd95b8c0ce284f428be5ddcf937b5ce7662.tar.bz2 |
[svn-r26413] Merge of r26276 from trunk.
Cleans up time functions in the autotools input files.
- Lumps all the time functionality together in configure.ac.
This was previously more spread out due to Solaris issues
with the ordering of certain checks.
- Removes processing that handles __tm_gmtoff members of struct
tm. (libc-4)
- Removes BSDgettimeofday(). (IRIX 5.3)
- Removes timezone struct processing in gettimeofday(). (considered
harmful)
Fixes: HDFFV-9083 and HDFFV-9085
Tested on: h5committest
OS X (quail)
Solaris (emu)
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 134a5c5..31e1dd9 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -155,6 +155,34 @@ New Features (DER - 2015-03-08, HDFFV-9086) + - Removed obsolete time functionality from configure and C library + + The library contained some residual functionality from obsolete + time zone handling code. This has been removed and the configure + checks for the time functions have been cleaned up. + + * Lumped all the time functionality together in configure.ac. + This was previously more spread out due to Solaris issues + with the ordering of certain checks. + + * Removes processing that handles __tm_gmtoff members of struct + tm. (libc-4) + + * Removes BSDgettimeofday(). (IRIX 5.3) + + * Removes timezone struct handling in gettimeofday(). (considered + harmful) + + Note that the HDF5 library stores timestamps in a platform-independent + manner, so old files can still be read. This only affects convering + system time to HDF5 timestamps. + + The library currently uses the tm_gmtoff member of the tm struct + (preferred, if available) or the timezone global variable to + construct HDF5 timestamps. + + (DER - 2015-03-09, HDFFV-9083 and 9085) + Library ------- - None |