summaryrefslogtreecommitdiffstats
path: root/config
Commit message (Collapse)AuthorAgeFilesLines
...
* [svn-r24742] Synchronize Apple bundle packaging with latest changes ↵Allen Byrne2014-02-276-0/+18
| | | | discovered during hdf-java work.
* [svn-r24716] Snapshot version 1.9 release 172HDF Tester2014-02-161-1/+1
|
* [svn-r24709] rename H5V to H5VM since H5V is needed in the fastforward ↵Mohamad Chaarawi2014-02-132-2/+2
| | | | | | | | | | | | project for view objects. The addition of view objects in the fastforward project is expected to be brough into the trunk sometimes in the future, which is why we need to make this change. Tested Manually on Jam and Ostrich. Tested with h5commitest - Koala with intel compilers failed, but nothing had to do with those changes. error on Koala: error while loading shared libraries: libirng.so
* [svn-r24706] Add to instructions for installAllen Byrne2014-02-131-0/+9
|
* [svn-r24703] Add Binary README.txt file generationAllen Byrne2014-02-132-1/+45
| | | | Tested: local linux cmake
* [svn-r24700] Updated packaging process to align with latest hdf cmake standards.Allen Byrne2014-02-112-3/+3
|
* [svn-r24698] Snapshot version 1.9 release 171HDF Tester2014-02-091-1/+1
|
* [svn-r24676] Snapshot version 1.9 release 170HDF Tester2014-02-021-1/+1
|
* [svn-r24655] Correct packaging variables and use standard cpack module.Allen Byrne2014-01-282-592/+3
|
* [svn-r24646] HDFFV-8640: Remove xlate_utility by fixing reference files to ↵Allen Byrne2014-01-271-56/+0
| | | | | | not add extra lines. Tested: cmake and autotools local linux
* [svn-r24639] Add SUN specific block skipping.Allen Byrne2014-01-211-0/+7
|
* [svn-r24621] Update files for changes to installation vars on windows.Allen Byrne2014-01-073-223/+249
|
* [svn-r24465] Snapshot version 1.9 release 169HDF Tester2013-11-251-1/+1
|
* [svn-r24432] Update examples package install location and text filesAllen Byrne2013-11-121-1/+1
|
* [svn-r24412] Updated information on how to build examples with cmake ↵Allen Byrne2013-11-071-4/+11
| | | | installed binary.
* [svn-r24385] Add missing H5_ prefixAllen Byrne2013-10-311-3/+3
| | | | Tested: local linux
* [svn-r24362] Snapshot version 1.9 release 168HDF Tester2013-10-271-1/+1
|
* [svn-r24334] Snapshot version 1.9 release 167HDF Tester2013-10-201-1/+1
|
* [svn-r24287] Snapshot version 1.9 release 166HDF Tester2013-10-131-1/+1
|
* [svn-r24218] Snapshot version 1.9 release 165HDF Tester2013-09-291-1/+1
|
* [svn-r24192] Correct test and usage of defines for cmake configureAllen Byrne2013-09-232-2/+6
|
* [svn-r24190] remove comment that caused linux build warnings and correct use ↵Allen Byrne2013-09-232-40/+42
| | | | | | of cmakedefine vs define in template. Tested: local linux
* [svn-r24186] Snapshot version 1.9 release 164HDF Tester2013-09-221-1/+1
|
* [svn-r24171] Purpose: Fix problem with gcc 4.8Neil Fortner2013-09-191-5/+0
| | | | | | | | | | | | | | Description: With optimization enabled, gcc 4.8 inserts garbage into the padding bytes of floating point types when assigning from a literal constant. This caused problems when H5detect.c scanned the bits in floating point types to determine their properties. Modified H5detect.c to scan for padding before further analyzing the type, and to ignore all information in the padding areas. Also removed code that temporarily disabled optimization. Tested: jam, koala, ostrich, platypus (h5committest)
* [svn-r24167] HDFFV-8513, HDFFV-8522 Plugin testing in h5repack, h5dump.Allen Byrne2013-09-193-5/+7
| | | | | | | Add more usage info for UserMacros. Add new option information about the Plugin default path. Tested: local linux, jam
* [svn-r24126] Correct mac pinifo.list varsAllen Byrne2013-09-121-31/+26
|
* [svn-r24119] Add new tests to memcheck ignore listAllen Byrne2013-09-101-0/+2
|
* [svn-r24104] HDFFV-8345: add User Defined filters to h5repack.Allen Byrne2013-09-062-0/+11
| | | | | | Reviewed in H5T-61 Tested: local linux - cmake and autotools
* [svn-r24101] Description:Quincey Koziol2013-09-051-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Clean up warnings, enable new compiler warning flag(s) and bring back changes from Coverity branch: r20813: Remove the dead code as listed for coverity bug #1722. h5committested. r20814: Issue 69: Check return value and throw error if negative return. Also free datatype id on error r20815: Use HDstrncpy. --gh r20816: Replaced one last HDstrcat call with HDstrncat to resolve coverity issue 832. r20817: Use HDstrncpy and HDstrncat. --gh r20818: Purpose: Fix valgrind issues with h5jam Description: Modified h5jam to free strings strdup'd in parse_command_line before exit. Note that they may still not be freed in case of error, due to the widespread use of exit(). r20819: Issue 80: change loop to use int as loop index. r20820: Maintenance: Fixed the bug found by coverity CID 788 There were two problems with this function: 1) it tried to unnecessary free NULL pointer 2) it tried to allocate c_name buffer that is done by H5Pget_class_name Tested on: Mac OSX 10.8.4 (amazon) w/gcc 4.8.1, C++ & FORTRAN (too minor to require h5committest)
* [svn-r24098] Issue 8500 - H5detect.c has trouble to find info for long ↵Raymond Lu2013-09-041-0/+5
| | | | | | | | | double with GCC 4.8. A user in the forum found the problem in H5detect.c (uninitialized buffer) and provided the solution. I checked it in yesterday. But it turned out to be a false fix. So I'm back it out. Tested on jam - reverse of changes.
* [svn-r24095] Issue 8500 - H5detect.c has trouble to find info for long ↵Raymond Lu2013-09-031-5/+0
| | | | | | | | double with GCC 4.8. A user in the forum found the problem in H5detect.c (uninitialized buffer) and provided the solution. Allen and I verified it. Tested with h5committest and CMake on jam, koala, ostrich, playtus, and Allen's virtual machine.
* [svn-r24092] Snapshot version 1.9 release 163HDF Tester2013-09-011-1/+1
|
* [svn-r24068] Snapshot version 1.9 release 162HDF Tester2013-08-251-1/+1
|
* [svn-r24017] Bug fix: HDFFV-8500Albert Cheng2013-08-161-0/+5
| | | | | | | | | | | The new gcc v4.8.* compilers does not work well with dt_arith which failed in production mode. Solution: A temporary patch by removing any optimization (-O*) from the PROD_CFLAGS so that dt_arith will pass for now. A more through investigation is needed. Tested: Jam and Koala where it failed and now passes.
* [svn-r24007] Update configure to support 64-bit cygwinAllen Byrne2013-08-131-0/+121
| | | | Tested: cygwin
* [svn-r24005] Remove check for GetConsoleScreenBuffer in CYGWIN (false positive).Allen Byrne2013-08-131-1/+3
|
* [svn-r24003] Remove check for GetConsoleScreenBuffer in CYGWIN (false positive).Allen Byrne2013-08-131-1/+3
| | | | Updated CDash site name in cmake script.
* [svn-r23989] Snapshot version 1.9 release 161HDF Tester2013-08-111-1/+1
|
* [svn-r23979] Correct Packaging var names.Allen Byrne2013-08-091-0/+37
|
* [svn-r23978] Add Bundle and plist file. Update script file add iconAllen Byrne2013-08-082-1/+6
|
* [svn-r23968] Snapshot version 1.9 release 160HDF Tester2013-08-041-1/+1
|
* [svn-r23926] Snapshot version 1.9 release 159HDF Tester2013-07-211-1/+1
|
* [svn-r23895] Snapshot version 1.9 release 158HDF Tester2013-07-141-1/+1
|
* [svn-r23865] Snapshot version 1.9 release 157HDF Tester2013-07-071-1/+1
|
* [svn-r23849] Snapshot version 1.9 release 156HDF Tester2013-06-301-1/+1
|
* [svn-r23845] HDFFV-8394: Add Optional Examples source packaging option.Allen Byrne2013-06-281-0/+112
| | | | Tested: local linux
* [svn-r23823] HDFFV-8428: Correct docs install listAllen Byrne2013-06-251-1/+2
| | | | HDFFV-8427: Add options to the help text of ALLOW_EXTERNAL_LIBS option.
* [svn-r23806] Snapshot version 1.9 release 155HDF Tester2013-06-231-1/+1
|
* [svn-r23789] Remove COMPILE_FLAGS value - already set in X_FLAGSAllen Byrne2013-06-171-1/+1
|
* [svn-r23784] Remove ignored FLAGS from MSVC variant of C compile/link. ↵Allen Byrne2013-06-171-3/+3
| | | | Incorrect copy from Fortran macro