summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r3862] Elena Pourmal2001-04-2710-34/+73
| | | | | | | | | | | Purpose: Codemaintenance Description: read/write APIs have been changed. Solution: Made necessary changes to the source code. Platforms tested: Linux, Solaris 2.7, O2K, T3E
* [svn-r3861] Elena Pourmal2001-04-2711-60/+126
| | | | | | | | | | | Purpose: Code maintenance Description: read/write APIs have been changed. Solution: Made necessary changes to the tests. Platforms tested: Windows 98, Linux, Solaris 2.7, O2K, T3E
* [svn-r3860] Elena Pourmal2001-04-2716-965/+3251
| | | | | | | | | | | | | | | | | | | | | | Purpose: Windows port Description: Multiple changes: * Windows platforms require special compiler directives in order to create DLLs. * In read/write subroutines data arrays were passed by descriptor. This worked on UNIX but did not work on Windows. Solution: * added compiler directives. * read/write APIs have been changed. There is an additional parameter (array that contains the sizes of data buffer dimensions) and regular arrays are used instead of assumed-shaped arrays. Platforms tested: * Currently this feature does not work. Common blocks are not exported correctly from one F90 module to another. I am checking this in so I can ask DEC for help. * For static library tests passed on Windows 98 ( except flush2_fortran) All tests passed on Linux, Solaris 2.7, O2K and T3E
* [svn-r3859] Elena Pourmal2001-04-272-0/+1
| | | | | | | | | | Purpose: Windows F90 port Description: all_withf90.zip file conyains all necessary projects to build and test HDF5 library (both C and F90) on Windows platforms Platforms tested: Windows 98
* [svn-r3857] Purpose:Bill Wendling2001-04-261-1/+1
| | | | | | | | | | | Bug Fix Description: For parallel compiles, it needed the libtest.so library and wasn't finding it. Solution: Added the path to the library to the rpath in the ltmain.sh file. Platforms tested: Modi4
* [svn-r3856] Purpose:Bill Wendling2001-04-241-0/+4
| | | | | | Update Description: Added the new testfiles.
* [svn-r3854] Purpose:Bill Wendling2001-04-241-1/+1
| | | | | | | | | | Bug FIx Description: Fix to look in the src/.libs directory when in the tools directories. Solution: Added .libs to the rpath. Platforms tested: Linux
* [svn-r3853] Purpose:Bill Wendling2001-04-245-0/+106
| | | | | | | | Adding Tests Description: Added tests for the h5dump subsetting feature. Platforms tested: Linux
* [svn-r3850] Updated for the added file.Albert Cheng2001-04-241-0/+1
|
* [svn-r3848] Purpose:Albert Cheng2001-04-241-14/+24
| | | | | | updated to v1.4 API. Platforms tested: Eyeballed modi4.
* [svn-r3846] Description:Albert Cheng2001-04-241-1/+1
| | | | | | updated revision date. Platforms tested: modi4 (serial and parallel)
* [svn-r3842] Purpose:Albert Cheng2001-04-242-1/+1024
| | | | | | | | | | | New feature Description: Added a parallel HDF5 example. make check knows how to run it in serial mode but not in parallel mode since the current makefile has no provision for parallel code execution. One would have to do it by hand (e.g., mpirun -np 2 ./ph4example) Platforms tested: modi4 (serial and parallel)
* [svn-r3841] Purpose:Bill Wendling2001-04-241-1/+1
| | | | | | | | | | Oops Description: An "if" was capilalized for some reason. Solution: Changed it from If to if. Platforms tested: Linux
* [svn-r3840] Purpose:Bill Wendling2001-04-241-2/+2
| | | | | | | | | | | | small bug fix Description: If specifying --stride, it was checking for the wrong short-form of the command-line parameters. Solution: Changed the 'T' to 'S' which is the new short form for the stride option. Platforms tested: Linux
* [svn-r3839] Purpose:Bill Wendling2001-04-241-1/+5
| | | | | | | | | | | Bug Fix... Description: For the tools library, it needed to find the HDF5 library in the `pwd`/../../src directory. Solution: Added `pwd`/../../src to the rpaths. Platforms tested: Modi4
* [svn-r3838] Purpose:Bill Wendling2001-04-241-13/+4
| | | | | | | | | | | | | | | | | | | | | | (Final?) Bug Fix Description: Okay, for those of you following this saga: Shared libraries weren't being found on the O2K system. Why not? Well, turns out that libtool is dain bramaged. Instead of creating executables for executables, it creates shell scripts. These shell scripts actually recompile the code, relinking it with the "correct" libraries. It's similar to when it goes to do an install. It recompiles to the binary so that it picks up the proper libraries. BUT! Libtool wasn't placing into the shell scripts where the shared libraries it was looking for actually were. Solution: I hacked up ltmain.sh so that it puts the required dynamic library directories into the compile line when it creates the shell-script/binaries. Platforms tested: Modi4...
* [svn-r3837] Purpose:Quincey Koziol2001-04-231-0/+2
| | | | | | Document bug fix. Description: Documented non-zero userblock bug fix.
* [svn-r3833] Purpose:Quincey Koziol2001-04-231-0/+32
| | | | | | | | | More tests Description: Added test to verify non-zero userblocks working correctly with dataset I/O code. Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r3832] Purpose:Quincey Koziol2001-04-232-22/+66
| | | | | | | | | | | | Bug Fix. Description: Setting a non-zero userblock size was causing raw data caching code to break. Solution: Changed from using absolute end-of-address-space offsets in cache size calculations to relative offsets. Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r3831] Purpose:Bill Wendling2001-04-221-2/+3
| | | | | | | | | | | Bug Fix Description: The fix I put in on Friday wasn't working properly. Solution: Changed some single quotes to double quotes so that the macros are expanded and set "command_finalize" to the newest values I created. Platforms tested: Modi4
* [svn-r3829] Purpose:Bill Wendling2001-04-211-1/+23
| | | | | | | | | | | | Bug Fix Description: The compiler on Modi4 (and possibly other machines) couldn't handle a long string being passed in with the -Wl, flag. Solution: Wrote some script which separates the string being passed into multiple flags with "-Wl,-rpath -Wl," before them. Platforms tested: Modi4
* [svn-r3828] Purpose:Quincey Koziol2001-04-192-7/+7
| | | | | | | | | | Code cleanup Description: "buf" parameter to H5Awrite was missing 'const' declaration. Solution: Changed from "void *buf" to "const void *buf" Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r3827] Purpose:Quincey Koziol2001-04-191-4/+4
| | | | | | | | | | | | | Bug fix. Description: 'make distclean' is broken on FreeBSD 4.3, with some syntax errors. I have a feeling that the make command is more picky in FBSD 4.3 than in 4.2 which is what is causing these errors to crop up now. Solution: Add missing semicolon to line in 'clean' target and take out bogus '-'s in front of "$(RM)" commands which are already in if's Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r3824] Frank Baker2001-04-1817-17/+27
| | | | | | | | Purpose: Update "Describes HDF5 Release..." footer from R1.4 to "Release 1.5, Unreleased Development Branch" Platforms tested: IE 5
* [svn-r3823] Frank Baker2001-04-1838-38/+38
| | | | | | | | Purpose: Update "Describes HDF5 Release..." footer from R1.4 to "Release 1.5, Unreleased Development Branch" Platforms tested: IE 5
* [svn-r3822] Frank Baker2001-04-1838-41/+49
| | | | | | | | Purpose: Update "Describes HDF5 Release..." footer from R1.4 to "Release 1.5, Unreleased Development Branch" Platforms tested: IE 5
* [svn-r3821] Frank Baker2001-04-181-895/+699
| | | | | | | | | | | | | | | Purpose: Repair damaged HTML coding (caused by the Netscape editor) and restore additions since that damage occured. Add h5dump subsetting material. Description: Reverted to earlier version to restore HTML coding. Re-entered h5dump XML material and explanatory comment re h5dump flag parameters. Added h5dump subsetting material. Other editing and formatting within h5dump description. Platforms tested: IE 5
* [svn-r3818] Purpose:Albert Cheng2001-04-181-26/+18
| | | | | | | | | | | | | Bug fix and clean up. Description: The part that should test 4GB was actually testing 2GB due to typo. Solution: Corrected the typo to use 4GB constant. Rearranged the code to group 2GB and 4GB tests in their own. Removed some duplicated testing code. Platforms tested: modi4.
* [svn-r3817] Frank Baker2001-04-171-3/+3
| | | | | | | | | Purpose: Label for "R 1.5, Unrelease Development Branch". Description: Changed appropriate subtitle line and appropriate footer. Platforms tested: IE 5
* [svn-r3816] Frank Baker2001-04-173-590/+635
| | | | | | | | Description: Importing Intro, ADG, and doc index changes from 1.4 release branch to 1.5 dev branch Platforms tested: IE 5
* [svn-r3814] Purpose:Bill Wendling2001-04-162-14/+28
| | | | | | | | | | | | | | | Cleanup Description: If there isn't anything to "remove" during the cleanup faze. This stops the "make clean"s from printing out: rm -f all of the time. Solution: Check if hte macros have anything in them before calling the rm. Platforms tested: Linux
* [svn-r3813] Purpose:Quincey Koziol2001-04-161-0/+2
| | | | | | Update.. Description: Add OSF5 files.
* [svn-r3812] Purpose:Albert Cheng2001-04-131-6/+15
| | | | | | | | | | | | | Improvement Description: The DIFF used to keep running after detecting significant code changes. This was done in order to see all changes but no one seems to look at the diff any more. So, let it end the DIFF cycle once it determines there are enough differences for a new test. Added "install install-doc uninstall uninstall-doc" to the test cycle. Platforms tested: Eirene, gondolin, modi4
* [svn-r3811] Purpose:Bill Wendling2001-04-131-11/+23
| | | | | | | | | | | | Update Description: If the count for a subset isn't specified, then we default to the remainder of the dataset. Solution: Check for the count to be specified. If not, then find the dimensions of the dataset and subtract from the the "start" parameter. Platforms tested: Linux
* [svn-r3810] Purpose:Bill Wendling2001-04-132-405/+58
| | | | | | Update Description: Removed test for zlib since the C++ library doesn't need it.
* [svn-r3809] Purpose:Bill Wendling2001-04-131-14/+26
| | | | | | | | | | | Bug Fix Description: On the T3E, the hack about SUBDOCDIR macro didn't work cause it wanted an actual value to be in this macro. Well, it wasn't, so now I check that it actually has a value. Solution: Check that DOCDIR and SUBDOCDIR have a value before trying to do anything with it.
* [svn-r3808] Purpose:Quincey Koziol2001-04-131-0/+1
| | | | | | Document port. Description: Mention port to OSF5
* [svn-r3807] Purpose:Quincey Koziol2001-04-138-717/+775
| | | | | | | | | | | | | | Portability changes Description: Very quick port to Compaq (nee DEC) Alpha OSF5. Solution: Added a new "dec-osf5.x" configuration file and changed configure.in to look for it. The local test machine is now passing all the tests, except I can't get the "-L<path>" stuff to work, so tools which depend on the HDF4 library around tested. Platforms tested: Compaq Alpha 5.1 (compaq.ncsa.uiuc.edu)
* [svn-r3806] Purpose:Bill Wendling2001-04-121-309/+346
| | | | | | | | Update Description: Wrote description of the subsetting feature that the h5dumper has. Platforms tested: w3m
* [svn-r3804] Purpose:Bill Wendling2001-04-123-3/+3
| | | | | | | | | | | | | | Bug Fix Description: If we need to specify a -R flag for dynamic libraries (like, in the case when we specify --with-hdf4), then this flag needs to be added to the linking line so that it will show up in the generated library and other programs linking to that library will be able to find the relevant libraries. Solution: Added the DYNAMIC_DIRS macro to the link line. Platforms tested: Arabica
* [svn-r3803] Frank Baker2001-04-118-86/+183
| | | | | Purpose: Importing RM changes from 1.4 release branch into development branch (1.5)
* [svn-r3802] Frank Baker2001-04-114-184/+117
| | | | | Purpose: Importing UG changes from 1.4 release branch into development branch (1.5)
* [svn-r3801] MuQun Yang2001-04-111-0/+0
| | | | | | | | | | | Purpose: bug fix Description: 1. fix project setting for h4toh5test 2. fix the typo at dumptest batch file Solution: Platforms tested: windows 2000
* [svn-r3800] MuQun Yang2001-04-111-0/+0
| | | | | | | | | | | Purpose: a bug fix for dumptest batch file Description: fix a typo at h5dump command line Solution: change h5dump .... attr ... into h5dump ..../attr... Platforms tested: windows 2000
* [svn-r3799] MuQun Yang2001-04-111-1/+1
| | | | | | | | | | | Purpose: a bug fix Description: forget considering daylight factor for mtime test on windows platform Solution: adding daylight factor in this file Platforms tested: windows 2000, confirmed at eirene
* [svn-r3795] Purpose:Bill Wendling2001-04-102-186/+248
| | | | | | | | | | | | | Update Description: Updated the way the subsetting data is retrieved. It now does it one row of blocks at a time. It may still run out of memory, but this is at least a good first step. Also, the start parameter defaults to (0, 0, ...) if it isn't specified. Platforms tested: Linux
* [svn-r3794] Purpose:Bill Wendling2001-04-101-0/+3
| | | | | | | | Bug Fix Description: uninstall-doc wasn't declared at the top level Makefile. Solution: Added it.
* [svn-r3791] Snapshot version 1.5 release 3HDF Admin2001-04-082-2/+2
|
* [svn-r3782] Purpose:Bill Wendling2001-04-051-1/+2
| | | | | | | Update Description: Changed old style includes "with <>" to new style 'with ""' for dependencies gathering.
* [svn-r3781] Purpose:Bill Wendling2001-04-05129-1049/+1142
| | | | | | | | | | | | | | | | | | Update Description: Changed #include <hdf_file.h> construct to #include "hdf_file.h" so that the GNU compiler can more easily pick up the dependencies which it places in the .depend and Dependencies files. Also regenerated the Dependencies to go along with this. Platforms tested: Linux