summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r4232] Purpose:Quincey Koziol2001-07-175-9/+36
| | | | | | | | | | | | | | | | | Bug fix. Description: On some systems (linux when not using gcc) 'dev_t' is not actually a scalar variable. This causes the code which compares dev_t's in the file drivers to not compile. Also the H5_inline flag was not being set correctly in the H5private.h file. Solution: Set the H5_inline flag to '' (i.e. define it, but don't assign it a value) if it is not currently defined. Use DEV_T_IS_SCALAR flag from configure to correctly compare dev_t's using memcmp instead of a scalar flag. Platforms tested: FreeBSD 4.3 (hawkwind), Linux 2.4.2 (chiba city cluster at Argonne)
* [svn-r4231] Purpose:Quincey Koziol2001-07-172-384/+405
| | | | | | | | | | | | | Bug fix. Description: On some systems (linux when not using gcc) the 'dev_t' is not actually a scalar variable. This causes the code which compares dev_t's in the file drivers to not compile. Solution: Detect this and set the DEV_T_IS_SCALAR flag so we can code around it in the file drivers. Platforms tested: FreeBSD 4.3 (hawkwind), Linux 2.4.2 (chiba city cluster at Argonne)
* [svn-r4230] Bill Wendling2001-07-172-2/+2
| | | | | | | | | | | | Purpose: Bug Fix Description: The HP-UX 11 platform needs the NSL library. Solution: Check for the HPUX 11 platform and then do the check for the NSL library. Platforms tested: Kelgia
* [svn-r4228] Purpose:Albert Cheng2001-07-171-1/+14
| | | | | | | | | | Feature Description: Added the feature that ALLHOSTS can be set via the file allhostfile in the snapshot directory. This reduces the need to modify runtest for hosts changes. Platforms tested: eirene (did dry runs).
* [svn-r4216] Elena Pourmal2001-07-163-10/+19
| | | | | | | | | | | Purpose: Bug fix (bug#625) Description: Character buffers were not copied and freed properly. That caused segmentation fault on Linux (Debian 2.2, a glibc2.1.3-based distro and gcc 2.95.2 and NAGWare Fortran 95 compiler Release 4.0a(392). Also many compilers screamed about this piece of code. Solution: Asked Quincey to fix the code. Platforms tested: Linux (eirene)
* [svn-r4213] Purpose:Quincey Koziol2001-07-166-603/+645
| | | | | | | | | | | Bug fix... (sorta) Description: Added --enable-linux-lfs configure flag to have better control over whether the enable large file support on Linux machines. Also removed the -malign-double flag for gcc since it can potentially cause errors which are difficult to detect. Platforms tested: Linix 2.2 & 2.4 (eirene and dangermouse)
* [svn-r4208] Elena Pourmal2001-07-131-0/+30
| | | | | | | | | Purpose: F90 port to HPUX 10.20 Description: Added F90 support for HPUX 10.20 Platforms tested: HPUX 10.20 (sangamon)
* [svn-r4206] Bill Wendling2001-07-131-1/+1
| | | | | | | | Purpose: Bug Fix Description: Ported fix from 1.4 branch to have compiler look in the fortran/src directory for modules.
* [svn-r4205] Bill Wendling2001-07-131-1/+1
| | | | | | | | | | | Purpose: Forward Port Description: Forward port of the hack fix applied to the 1.4 branch. This corrects the previous hack by putting *'s in the pattern matching so that they'd match the gseaborg machine correctly. Platforms tested: gseaborg
* [svn-r4202] Raymond Lu2001-07-121-44/+222
| | | | | | | | | | | Purpose: Added attribute test Description: attribute test is added into t_mdset.c. At this moment, testing failed on SunOS 5.7 and Linux. But I believe the problem is from dataset collective writing in t_dset.c. Platforms tested: SGI MPI, MPICH(IRIX64 N32, IRIX64 64, IRIX, Linux, SunOS).
* [svn-r4196] Purpose:Quincey Koziol2001-07-121-2/+10
| | | | | | | | | | | | Bug Fix Description: Using a 'long long' type (i.e. hsize_t) in a switch statement is apparently not allowed by the HP/UX 10.20 system compiler and causes the compile to fail. Solution: Cast the variable to a size_t for the switch. Platforms tested: HP/UX 10.20 (sangamon)
* [svn-r4193] Purpose:Frank Baker2001-07-111-7/+95
| | | | | | | | | New section -- "Freespace Management" Description: Added "Freespace Management" section. Minor formatting. Platforms tested: IE 5
* [svn-r4189] Bill Wendling2001-07-111-1/+2
| | | | | | | | | | | Purpose: Bug Fix Description: the ptesthdf5_fortran.f90 program was dependent upon the THDF5 module. But before the ptesthdf5_fortran.lo file is build, the THDF5 module needs to be built. Solution: Put that dependency into the Makefile.
* [svn-r4188] Pedro Vicente Nunes2001-07-111-0/+0
| | | | | | | | | | | Purpose: removed hl from workspace Description: Solution: Platforms tested:
* [svn-r4187] Pedro Vicente Nunes2001-07-111-0/+0
| | | | | | | | | | | | Purpose: removed hdf5_hl projects from all.zip Description: Solution: Platforms tested:
* [svn-r4185] MuQun Yang2001-07-111-5/+18
| | | | | | | | | | | Purpose: a bug in the comment Description: The structure of HDF4 file is not correct in the orginal comment Solution: Correct the wrong comment and add more explanation Platforms tested: eirene
* [svn-r4184] Purpose:Quincey Koziol2001-07-114-12/+27
| | | | Roll a snapshot for the FLASH folks at Argonne to test with.
* [svn-r4182] Bill Wendling2001-07-111-1/+1
| | | | | | | | | | | Purpose: Bug Fix Description: The SP3 machine doesn't like the "-b nolibpath ..." flags, the same as the pacific blue machine. I'm hoping that this will fix it. Solution: Adding the offending machine's name to the "Major Hack(tm)" we did for the Pacific Blue machine.
* [svn-r4181] Purpose:Quincey Koziol2001-07-1051-2704/+4701
| | | | | | | | | Bug Fix, Code Cleanup, Code Optimization, etc. Description: Fold in the hyperslab speedups, clean up compile warnings and change a few things from using 'unsigned' or 'hsize_t' to use 'size_t' instead. Platforms tested: FreeBSD 4.3 (hawkwind), Solaris 2.7 (arabica), Irix64 6.5 (modi4)
* [svn-r4180] Purpose:Quincey Koziol2001-07-105-127/+340
| | | | | | | | Documentation Description: Accommodate v1.2.x behavior when --enable-hdf5v1_2 is enabled. Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r4179] Purpose:Quincey Koziol2001-07-101-0/+23
| | | | | | | | | | | | Documentation Description: H5Tget_member_type in v1.2.x returns the base type of array fields in compound datatypes, not an array type itself. Solution: Changed to emulate this behavior in v1.4.x when the --enable-hdf5v1_2 flag is given during configuration. Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r4178] Purpose:Quincey Koziol2001-07-101-0/+2
| | | | | | | | Documentation Description: Noted bug fix for v1.2 compatibility mode. Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r4174] Bill Wendling2001-07-101-1/+1
| | | | | | | Purpose: Regeneration Description: Regenerated the configure file for the Fortran FFLAGS fix.
* [svn-r4172] Bill Wendling2001-07-101-1/+1
| | | | | | | | | | | | | Purpose: Bug Fix Description: *sigh* The change I made yesterday didn't work correctly. The shell command interpretted the line as if it were command flags. Solution: Removed the "()"s from around the macro name so that they can be expanded correctly. Platforms tested: Linux
* [svn-r4171] Elena Pourmal2001-07-102-2/+2
| | | | | | | | | | | Purpose: Bug fix (by Bob McGrath) Description: On Solaris platforms palette was not written to the HDF5 file Solution: '\0' character was written outside the GroupName array. Apparently on Solaris it destroyed the condition value that determined if the palette should be written to the file. Platforms tested: Not tested yet.
* [svn-r4169] Pedro Vicente Nunes2001-07-101-0/+0
| | | | | | | | | | | Purpose: updated all.zip for include new projects for hdf5_hl Description: Solution: Platforms tested:
* [svn-r4166] Bill Wendling2001-07-095-48/+47
| | | | | | | | | Purpose: Fix Description: Porting fixes from the 1.4 branch to the 1.5 branch. This fixes the dependency problem in the testpar/ directory and also the problem with module includes on the command line.
* [svn-r4163] Purpose:Frank Baker2001-07-091-9/+22
| | | | | | | | | | Fixes bug #503 Description: H5Gunlink -- Changed "file space is reclaimed" ot "released". Added note re: freespace and packing. Heavy edit of Purpose and Description. Platforms tested: IE 5
* [svn-r4162] Description:Frank Baker2001-07-091-3/+3
| | | | | | H5Screate_simple -- Minor edit re negative value (-1) of H5S_UNLIMITED. Platforms tested: IE 5
* [svn-r4160] Purpose:Pedro Vicente Nunes2001-07-091-0/+3
| | | | | | | | | | added a include for io.h that was missing Description: Solution: Platforms tested: NT
* [svn-r4159] Pedro Vicente Nunes2001-07-091-0/+1
| | | | | | | | | | | | Purpose: added CW doc to manifest Description: Solution: Platforms tested:
* [svn-r4158] Pedro Vicente Nunes2001-07-091-0/+30
| | | | | | | | | | | | Purpose: code warrior docs Description: Solution: Platforms tested:
* [svn-r4155] Pedro Vicente Nunes2001-07-092-24/+7
| | | | | | | | | | | | | Purpose: updated windows headers in these 2 src files Description: Solution: Platforms tested: NT:
* [svn-r4153] Pedro Vicente Nunes2001-07-091-0/+0
| | | | | | | | | | | Purpose: updated all.zip to the MSVC projects for hdf5_hl: Description: Solution: Platforms tested:
* [svn-r4152] Pedro Vicente Nunes2001-07-091-0/+0
| | | | | | | | | | Purpose: updated all.zip to include code warrior project Description: Solution: Platforms tested:
* [svn-r4151] Pedro Vicente Nunes2001-07-091-0/+0
| | | | | | | | | | | | Purpose update all .zip to include MSVC projects for hd5_hl : Description: Solution: Platforms tested:
* [svn-r4150] Bill Wendling2001-07-096-10/+50
| | | | | | | Purpose: Checking in BOb's Changes Description: Just checking in Bob McGrath's changes to the h5dumper's XML code.
* [svn-r4138] Bill Wendling2001-07-062-41/+51
| | | | | | | | | | | | | | | | Purpose: Bug Fix Description: In order for libtool to point to the place zlib lives (when specified) it needs to add that flag to the LDFLAGS macro. However, since we're getting this information from the top-level configure, it's cached. Thus, we don't check for it and the -L flag doesn't get included into the LDFLAGS macro. Solution: Remove the cached value so that the Fortran configure will always check for zlib even if it's found by the top-level configure. Platforms tested: Kelgia
* [svn-r4136] Bill Wendling2001-07-061-1/+1
| | | | | | | | | | | | | Purpose: Bug Fix Description: We long ago changed the compiler flags to pick out dependencies to -MM instead of -M so that only #include "filename.h" type headers will be put into the .depend file. Solution: Changed this flag. Platforms tested: Linux
* [svn-r4134] Purpose:Frank Baker2001-07-061-2/+7
| | | | | | | | | | Bugfix. Description: H5Screate_simple -- Minor edit. H5Sget_simple_extent_dims -- Added note regarding H5S_UNLIMITED. Completes fix to bug #568. Platforms tested: IE 5
* [svn-r4131] Elena Pourmal2001-07-061-2/+2
| | | | | | | | | | Purpose: Typo fix Description: Today's daily tests failed on modi4 (pp) because of the type in the H5FDmpioff.f90 file name. Solution: Fixed the name.
* [svn-r4129] Purpose:Albert Cheng2001-07-062-27/+25
| | | | | | | | | | | | | | | | update Description: Several files have been renamed or moved to a different location. README => README.txt RELEASE.txt => release_docs/RELEASE.txt HISTORY.txt => release_docs/HISTORY.txt Updated h5vers and release to reflect all these new names/locations. Also made all uses the same beginning phases for the first line of text in README.txt and RELEASE.txt as follows: "HDF5 version ... " Platforms tested: eirene by running the bin/release and bin/h5vers -i.
* [svn-r4127] Purpose:Frank Baker2001-07-061-15/+22
| | | | | | | | | | | Bugfix Description: H5Screate_simple -- Corrected statement referring to value of 0 instead of H5S_UNLIMITED for unlimited dimensions. While there, took the opportunity to rework the Description section. Fixes Bug #568. Platforms tested: IE 5
* [svn-r4126] Purpose:Frank Baker2001-07-063-17/+24
| | | | | | | | | | | | | | | | Bugfixes and editing. Description: RM_H5T.html H5Tget_class -- Added H5T_ARRAY to list of valid datatype class IDs. Closes bug #611. -- Minor formatting issue in same command. RM_H5F.html H5Fflush -- Added "Note:" re H5 vs OS buffers. H5Fclose -- Corrected mentions of H5close to read H5Fclose. RM_H5P.html Removed () from several H5* function names in running text. Platforms tested: IE 5
* [svn-r4123] Frank Baker2001-07-062-5/+7
| | | | | | | | | | | | | | | Purpose: Bugfix (Tools.html) and spelling correction (Files.html) Description: Tools.html h5dump -- Removed "interactively" from first description sentence. (As a user has pointed out, an application that runs and exits without opportunity for user input is not "interactive".) Fixes bug #474. Rewrote introductory sentence to "Tools" page. Files.html -- Spelling correction Platforms tested: IE 5
* [svn-r4121] Purpose:Bill Wendling2001-07-051-0/+26
| | | | | | | | | | Bug Fix Description: Propagating changes from the 1.4 branch to the 1.5 branch. This fix takes care of the problem of parallel make in the Fortran directory. Platforms tested: Eirene and Modi4
* [svn-r4118] Bill Wendling2001-07-052-529/+539
| | | | | | | | | | | | Purpose: Bug Fix Description: Changed the README file's name to README.txt to coincide with the file's actual name change. Also removed check for the nsl library unless we're dealing with a SunOS system as this can conflict with libraries on other strange platforms. Platforms tested: Eirene.
* [svn-r4114] Elena Pourmal2001-07-0512-11/+13
| | | | | | | Purpose: Maintenance Description: Source directory has been rearranged. INSTALL*, HISTORY.txt and RELEASE.txt were moved to the release_docs directory. *.zip files were moved to the windows directory. README file was renamed to README.txt MANIFEST was updated to reflect those changes.
* [svn-r4111] Dan Wells2001-07-052-0/+4
| | | | | | | | | | | | | | Purpose: Feature Description: Changed Pablo source code to allow the user to build the instrumented library to link with either the Trace Libraries or Pablo PCF. Solution: Added conditionally compiled code to routines in the pablo subdirectory. Also added a new file PabloHDF_MPIO.c containing all of the MPI I/O code for better code structure. Platforms tested: Solaris 32-bit, Irix 64
* [svn-r4110] Dan Wells2001-07-0510-1265/+1777
| | | | | | | | | | | | | | | Purpose: feature Description: allows the option of building the library libhdf-inst.a so that it can link with either the Pablo Trace Libraries or with the Pablo Performance Capture Facility (PCF) Solution: Added code for conditional compilation using the PCF_BUILD flag. When the library is made, the user can specify PABLO_BUILD=PCF which will cause the -DPCF_BUILD to be passed to the compiler. Platforms tested: Solaris, IRIX64