summaryrefslogtreecommitdiffstats
path: root/release_docs
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r26696] Merge from trunkAllen Byrne2015-04-011-4/+0
| | | | Tested local linux cmake
* [svn-r26688] HDFFV-8667: h5repack crashes on enumerated 8-bit type nested in ↵Albert Cheng2015-04-011-0/+2
| | | | | | | | compound type Fixed and added user provided test file to verify the fix. (Test added to h5dump/testh5dump.sh.in). Tested: h5committest
* [svn-r26681] Merge r26677 from trunk.Albert Cheng2015-03-311-0/+2
| | | | | | | | | | | | | | | HDFFV-8957: h52gif crashes when run against one of our own examples The tool claimed it could handle 24bit images but there was no code to handle it. (or might be there were but was removed by previous revisions.) Also discovered that it does not accept multiple images nor -p for palette as its user document and online help message indicated. Solution: Added code to verify dimension sizes are within 8 bit raster images limit and added tests to verify the tools correctness. Need to update user document tool. Tested: h5committested.
* [svn-r26654] Bring trunk CMake changes to branch.Allen Byrne2015-03-302-10/+8
| | | | Tested: local linux
* [svn-r26644] Snapshot version 1.8 release 15 (snap13)HDF Tester2015-03-291-1/+1
|
* [svn-r26614] fixed typo.Scot Breitenfeld2015-03-271-1/+1
|
* [svn-r26613] Added changes to Fortran APIs.Scot Breitenfeld2015-03-271-0/+11
|
* [svn-r26610] Added changes to HL and Fortran.Scot Breitenfeld2015-03-271-6/+43
|
* [svn-r26574] Added new C lib. changes -- MSBScot Breitenfeld2015-03-251-0/+10
|
* [svn-r26548] Added Fortran Changes.Scot Breitenfeld2015-03-231-2/+36
|
* [svn-r26540] Update minimum cmake versionAllen Byrne2015-03-233-4/+4
|
* [svn-r26531] Merge CMake packaging from trunk to 1.8Allen Byrne2015-03-231-4/+4
| | | | Tested: windows
* [svn-r26520] Snapshot version 1.8 release 15 (snap12)HDF Tester2015-03-221-1/+1
|
* [svn-r26413] Merge of r26276 from trunk.Dana Robinson2015-03-101-0/+28
| | | | | | | | | | | | | | | | | | | | | | 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)
* [svn-r26395] Merges r26329 from trunkDana Robinson2015-03-091-0/+15
| | | | | | | | | | | | | | Removed the configure option that allows selective disabling of individual internal filters (fletcher32, shuffle, etc.). This feature mucked up the code with a lot of #ifdefs, saved very little space and was not scalable to a general scheme for library size reduction. We've decided to remove the feature while we investigate a more general scheme for decreasing the library size. Fixes: HDFFV-9086 Tested on: h5committest
* [svn-r26394] Merges r26351 from trunkDana Robinson2015-03-091-1/+7
| | | | | | | | Adds warning prevention pragmas, etc. to flex- and bison-generated code. Fixes: HDFFV-9149 Tested on: h5committest
* [svn-r26393] Merges r26347 and r26363 from trunkDana Robinson2015-03-091-0/+8
| | | | | | | | | | | Moves the _POSIX_C_SOURCE, _GNU_SOURCE, and _BSD_SOURCE from AM_CPPFLAGS to H5_CPPFLAGS in the Autotools configure scripts. This prevents them from being exported to h5cc, etc. which is inappropriate since they may interfere with other code. Fixes: HDFFV-9152 Tested on: h5committest
* [svn-r26391] Snapshot version 1.8 release 15 (snap11)HDF Tester2015-03-081-1/+1
|
* [svn-r26371] Update cmake mininum versionAllen Byrne2015-03-052-3/+3
| | | | Update windows wix cpack process.
* [svn-r26370] Added support for Mac OS X 10.10 Yosemeti.Albert Cheng2015-03-051-2/+9
| | | | Also updated entries for Max OS X 10.9 Mavericks.
* [svn-r26326] Merge of r26275 from the trunkDana Robinson2015-02-271-0/+18
| | | | | | | | | | | | | - Updated configure.ac so that the direct VFD can now be built without specifying _GNU_SOURCE, etc. on the command line. - The direct VFD is now disabled by default. It was previously enabled, but the configuration script couldn't configure it properly, making it a moot point. Fixes: HDFFV-9057, HDFFV-7567, HDFFV-9088, HDFFV-7566 Tested on jam (configure/make in various configurations only)
* [svn-r26322] Merge of r26246 and r26249 from the trunkDana Robinson2015-02-261-0/+11
| | | | | | | | | | Fixes a bug in the bin/trace script that prevented API calls which return a pointer from receiving TRACE macros. Also removes the NO TRACE warnings, which we decided were distracting and unnecessary. Tested on: jam (minor change)
* [svn-r26310] Merge of r26071 from features/autotools_reworkDana Robinson2015-02-261-0/+11
| | | | | | | | | | Removes the --with-default-vfd option from configure. This was basically useless and only allowed selecting the stdio VFD. Since this is a demo VFD and not really a production VFD, we decided to retire this option. Fixes: HDFFV-9081 Tested on: jam (minor change)
* [svn-r26309] Updated RELEASE.txt to indicate that VMS files have been removed.Dana Robinson2015-02-261-1/+14
|
* [svn-r26273] Fixes compile failures when building on Windows when UNICODE is ↵Dana Robinson2015-02-221-0/+23
| | | | | | | | | | | | | | | | | defined. This was due to wrapping a variable with the TEXT() macro and not forcing the <function>A form of certain Win32 API calls are always used. Although we do not defined UNICODE in our builds, others have encountered problems when building HDF5 as a part of a larger project where UNICODE is defined. Fix for: HDFFV-8927 Tested on: 64-bit Windows 7, Visual Studio 2012, CMake 3.2 All combinations of static/shared and UNICODE defined/undefined NOTE: plugin tests are skipped with static builds
* [svn-r26264] Merge of r26225 from trunk.Dana Robinson2015-02-211-1/+13
| | | | | | | | | Removed a a work-around for a broken CodeWarrior open() call from configure that causes a test in test/tfile.c to be skipped. This change removes the H5_NO_SHARED_WRITING symbol. Tested on: jam (no code changes w/ non-CodeWarrior compilers)
* [svn-r26240] add release.txt entries for changes made to configure.acMohamad Chaarawi2015-02-191-0/+14
|
* [svn-r26189] Merge revision 26149 to 1.8 branchNeil Fortner2015-02-161-1/+3
| | | | | | | | | Fix potential memory error reported by valgrind in H5D__link_chunk_collective_io. This would occur when performing collective I/O on a dataset with only 1 chunk, and a participating process had nothing to read or write. Tested: jam, koala, ostrich (h5committest); in trunk and 1.8
* [svn-r26178] Snapshot version 1.8 release 15 (snap10)HDF Tester2015-02-151-1/+1
|
* [svn-r26163] Update versionsAllen Byrne2015-02-121-9/+12
|
* [svn-r26147] Snapshot version 1.8 release 15 (snap9)HDF Tester2015-02-081-1/+1
|
* [svn-r26094] Snapshot version 1.8 release 15 (snap8)HDF Tester2015-02-011-1/+1
|
* [svn-r26088] update build procedure for Hopper (Cray).. only static now. Mohamad Chaarawi2015-01-301-26/+19
| | | | Will add shared when we introduce support later.
* [svn-r25982] Snapshot version 1.8 release 15 (snap7)HDF Tester2015-01-181-1/+1
|
* [svn-r25976] Snapshot version 1.8 release 15 (snap6)HDF Tester2015-01-111-1/+1
|
* [svn-r25970] Update with retirement of AIX 5.3 and addition of AIX 6.1 support.Albert Cheng2015-01-091-4/+4
|
* [svn-r25950] Snapshot version 1.8 release 15 (snap5)HDF Tester2015-01-041-1/+1
|
* [svn-r25944] updated AIX compilers information.Albert Cheng2015-01-021-3/+3
|
* [svn-r25925] Snapshot version 1.8 release 15 (snap4)HDF Tester2014-12-281-1/+1
|
* [svn-r25916] Snapshot version 1.8 release 15 (snap3)HDF Tester2014-12-211-1/+1
|
* [svn-r25911] Updated.Albert Cheng2014-12-191-1/+3
|
* [svn-r25887] Snapshot version 1.8 release 15 (snap2)HDF Tester2014-12-141-1/+1
|
* [svn-r25873] Updated with new options of cmakehdf5.Albert Cheng2014-12-091-1/+3
|
* [svn-r25869] HDFFV-9041: Definitions needed to be a semi-colon separated list.Allen Byrne2014-12-091-1/+7
|
* [svn-r25866] Snapshot version 1.8 release 15 (snap1)HDF Tester2014-12-071-1/+1
|
* [svn-r25865] Maintenance after the release: Added 1.8.14 RELEASE.txt to the ↵Elena Pourmal2014-12-071-0/+751
| | | | HISTORY.txt file.
* [svn-r25856] Snapshot version 1.8 release 15 (snap0)HDF Tester2014-11-301-1/+1
|
* [svn-r25850] INSTALL_parallel already has a known issues section for Hopper.Albert Cheng2014-11-251-14/+0
| | | | | I moved all hopper known problems from RELEASE.txt to INSTALL_parallel so that they are all in one place.
* [svn-r25849] INSTALL_parallel already has a known issues section for Hopper.Albert Cheng2014-11-251-0/+17
| | | | | I moved all hopper known problems from RELEASE.txt to INSTALL_parallel so that they are all in one place.
* [svn-r25837] Updated RELEASE.txt message for HDFFV-9016 to be in line with ↵Dana Robinson2014-11-231-14/+19
| | | | the current RELEASE.txt guidelines.