summaryrefslogtreecommitdiffstats
path: root/config
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r20875] Refactor h5import to close files and free allocations. Also ↵Allen Byrne2011-05-201-16/+0
| | | | | | corrected test dependencies so that memcheck would process tests in correct order. Tested: local linux - confirmed with valgrind
* [svn-r20862] Adjust CPack configuration location by removing version ↵Allen Byrne2011-05-182-2/+9
| | | | extension in folder name. Add install configuration commands if ext libs are packaged with project.
* [svn-r20858] Correct state of EXTERNALLY_CONFIGURED when using ↵Allen Byrne2011-05-181-6/+6
| | | | EXTERNAL_PROJECT for extlibs.
* [svn-r20800] Correct install path variableAllen Byrne2011-05-121-16/+19
|
* [svn-r20721] Refactor ext lib import and install.Allen Byrne2011-05-041-0/+4
| | | | Add SOVERSION for linux
* [svn-r20717] Refactor ext lib import and install.Allen Byrne2011-05-042-29/+77
| | | | | | Change case of tools subtests to not conflict with tools tests. Tested: windows, local linux
* [svn-r20713] Packed Bits Merge:Allen Byrne2011-05-034-7/+37
| | | | | | | | | removed option defines and #ifdef/#endif refactored all printf to HDfprintf in h5dump.c formatted and indention improvements synched with 1.8 branch Tested: local linux
* [svn-r20686] Added "xlc_r" as a recognized XL compilers.Albert Cheng2011-04-291-1/+1
| | | | | | Tested: NCSA BP AIX system. No need of h5committest because the changes affect AIX systems only.
* [svn-r20677] Merge packed bits option from 1.8 branch to trunk. CMake only. ↵Allen Byrne2011-04-294-2/+6
| | | | | | Autotools merge to come. Tested: local Linux
* [svn-r20669] Add test_configuration settingAllen Byrne2011-04-281-0/+2
|
* [svn-r20641] Add CPack overrides for NSIS install paths. Install for ↵Allen Byrne2011-04-262-0/+1948
| | | | | | products are: HDF Group/Product/Version Tested: windows , local linux
* [svn-r20596] Add missing library suffix to ext lib install listAllen Byrne2011-04-221-1/+1
|
* [svn-r20590] On windows the ext libs did not work for cpack process. Changed ↵Allen Byrne2011-04-211-27/+23
| | | | ext lib handling to get the correct path. Needs more work to remove the the pre-install copying.
* [svn-r20572] Bug #5929: On windows check for existence of ↵Allen Byrne2011-04-202-22/+90
| | | | | | InitOnceExecuteOnce for use by threads. merge from 1.8 r20568
* [svn-r20561] Description:Quincey Koziol2011-04-201-2/+2
| | | | | | | Remove C++ specific flag from C compilation flags, for gcc 4.5 & 4.6 Tested on: FreebSD/64 8.2 (freedom) w/gcc 4.6
* [svn-r20543] revert install command for External library builds - copy of ↵Allen Byrne2011-04-181-6/+6
| | | | lib fails if permission to install location is denied. Does not affect build otherwise.
* [svn-r20538] Description:Quincey Koziol2011-04-181-3/+67
| | | | | | | | Update with new warning flags for gcc 4.6.x Tested on: FreeBSD/32 8.2 (loyalty) w/gcc 4.6 FreeBSD/64 8.2 (freedom) w/gcc 4.6
* [svn-r20520] Removed ibm-aix6.x file which just sourced ibm-aix file. ↵Albert Cheng2011-04-151-21/+0
| | | | | | | | | | Removed code in configure.in that tried to distinguish different versions of AIX. This is no longer needed. Tested: NCSA Blue-print. No h5committest since this affected AIX system only.
* [svn-r20515] Description:Quincey Koziol2011-04-151-18/+0
| | | | | | | | | | | | Remove old, uneeded configuration customizations for FreeBSD systems. (config/freebsd) Also, convert a large stack variable into a dynamic memory allocation and clean up a few compiler warnings (tools/h5dump/h5dumpgentest.c) Tested on: FreeBSD/32 8.2 (loyalty) w/debug & production FreeBSD/64 8.2 (freedom) w/debug & production
* [svn-r20506] Add missing cmake_install_prefix to external projectsAllen Byrne2011-04-141-6/+13
|
* [svn-r20504] Purpose:Mike McGreevy2011-04-141-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | General shared library improvements for CYGWIN / AIX Description: Shared libraries are disabled on both CYGWIN and AIX due to inability to build them correctly. Part of the problem in both of these situations is the lack of the libtool flag -no-undefined, which tells libtool that all needed symbols are defined at link time (a requirement on these systems) and that it's okay to build shared libraries. Another problem are lack of dependencies between wrapper libraries and core C HDF5 library. This patch addresses both of these by fixing configure to add in -no-undefined flag for libtool during linking and adds automake dependencies in the Makefile.am files. After testing, both CYGWIN and AIX now generate shared libraries, but there are still some test failures in each. (cache_api, dt_arith, and testerror.sh on CYGWIN, and fortran tests on AIX). Even though the shared libraries are not quite perfect, this is a general improvement to what we had before, so I'm applying the patch anyways. Note that default behavior of shared libraries on these systems being disabled has NOT been changed and requires the use of the --enable-unsupported to attempt to build them. We will need to address the test failures in each architecture prior to formally supporting shared libraries on each. Tested: h5committested & CYGWIN tested (on bangan) (AIX tested by Albert on bp-login2)
* [svn-r20499] Fixes erroneous H5_HAVE_GETTIMEOFDAY behavior on Windows (JIRA ↵Dana Robinson2011-04-141-1/+3
| | | | | | | | HDFFV-5931). Previously, H5_HAVE_GETTIMEOFDAY was never properly defined. The timezone struct and Wgettimeofday() timezone output was also added. This is a merge of several changesets from the log_vfd branch where this work took place: 20355, 20359, 20411, 20413, 20431, 20460 Tested on: Windows
* [svn-r20486] Fix handling of ext libs Windows naming for External_Project ↵Allen Byrne2011-04-121-13/+13
| | | | builds of "Debug" builds.
* [svn-r20476] Removed all references to memory.hDana Robinson2011-04-112-6/+2
|
* [svn-r20475] Purpose:Mike McGreevy2011-04-111-8/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Revise shared Fortran library disabling scenarios in configure - Improve configure output summary Description: Shared Fortran libraries are not supported on Mac, but were being disabled by configure in a way that also forced the C libraries to be static-only. This has been fixed, so now only shared Fortran is disabled while shared C can remain. This prompted two additional changes: 1. While working on the check that addresses whether or not shared Fortran libraries are allowed, removed old and no longer needed check(s) that disable shared Fortran libraries with HP, Intel 8, PGI, and Absoft compilers. (Essentially, Mac is the only situation in which Fortran shared are disabled by configure.) 2. Having two different states of libraries (i.e. shared C library with static-only Fortran library) was not apparent in the configure summary, which labeled all libraries as either shared and/or static. I've added lines to both the C++ and Fortran output sections to list shared/static-ness of these libraries specifically. Additionally, I've made sure that the new --enable-unsupported configure option correctly overrides configure if it tries to disable a shared library. Tested: jam, fred, & h5committest
* [svn-r20472] Add message that H5_HAVE_WIN_THREADS requires WINVER >= 0x600 ↵Allen Byrne2011-04-112-0/+20
| | | | (VISTA or WIN7)
* [svn-r20446] Updated valgrind ignore listAllen Byrne2011-04-081-4/+17
|
* [svn-r20433] Implement MinGW changes to CMake configurationAllen Byrne2011-04-072-7/+10
| | | | Tested: local linux
* [svn-r20430] Remove config message for windows - ↵Allen Byrne2011-04-071-3/+1
| | | | H5_HAVE_GETCONSOLESCREENBUFFERINFO always gets set on windows (this is from the pubconf.h in the windows folder)
* [svn-r20429] CMake: correct h5copy test macros, add userblock script test to ↵Allen Byrne2011-04-072-0/+121
| | | | | | h5jam tests, and correct h5jam tests Tested: local linux
* [svn-r20420] Correct typo in macro parameterAllen Byrne2011-04-051-4/+4
| | | | Tested: local linux
* [svn-r20419] Correct typo in macro parameterAllen Byrne2011-04-051-2/+2
|
* [svn-r20417] ExternalProject_ADD calls changed to use common project output ↵Allen Byrne2011-04-051-49/+38
| | | | | | folders for external projects. This eliminates the library copy commands, which were failing on windows. Tested: local linux
* [svn-r20405] Description:Quincey Koziol2011-04-042-4/+4
| | | | Bump patch release number, after giving out private snapshots.
* [svn-r20375] Test name change needed to be updated in valgrind ignore listAllen Byrne2011-03-301-2/+2
|
* [svn-r20352] Update Valgrind ignore listAllen Byrne2011-03-261-0/+17
|
* [svn-r20330] Adjust H5JAM tests for valgind executionAllen Byrne2011-03-251-3/+27
|
* [svn-r20307] The TEST_REFERENCE EOL adjustment block needs to be included in ↵Allen Byrne2011-03-241-8/+8
| | | | the SKIP_COMPARE IF block
* [svn-r20305] Add tests to h5import and 80% of h5jamAllen Byrne2011-03-232-29/+110
| | | | Tested: local linux
* [svn-r20250] Enable memcheck of h5stat and h5diff toolsAllen Byrne2011-03-151-147/+0
|
* [svn-r20228] Add tools bin folder to installation variablesAllen Byrne2011-03-101-0/+1
|
* [svn-r20224] Add enable-error-stack option to new features-tools section.Allen Byrne2011-03-101-251/+4
| | | | Enable h5stat tests for valgrind testing.
* [svn-r20203] Purpose:Jonathan Kim2011-03-081-0/+4
| | | | | | | | | | | | | Fix Bug 2120 - h5copy: improve to copy an object into same HDF file Description: Before the fix users can't copy an object (dataset or group) with different name if input file (-i) and output file (-o) is same. This feature would be useful to clone any object with different name and reuse contents. Tested: jam (linux32-LE), amani (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), Cmake (jam)
* [svn-r20184] Enable h5dump tests in valgrindAllen Byrne2011-03-042-195/+223
|
* [svn-r20168] BZ2048: Add -E --enable-error-stack option to h5dump.Allen Byrne2011-02-281-1/+1
| | | | Tested: local linux, heiwa, windows
* [svn-r20156] Update macros to correct errors found on windowsAllen Byrne2011-02-251-2/+10
|
* [svn-r20155] Change macros - do not need URL parameterAllen Byrne2011-02-241-9/+9
|
* [svn-r20154] Update error in szip ext project macroAllen Byrne2011-02-241-2/+2
|
* [svn-r20153] Move ext lib handling for ext project building to a common ↵Allen Byrne2011-02-242-116/+322
| | | | | | macro. Update HDF5 project to use HDFMacros.cmake file. Add test properties for test ordering. Tested: local linux, windows
* [svn-r20149] Change Name of Legacy naming optionAllen Byrne2011-02-231-9/+9
|