summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r1826] Got rid of old commented out commands.Albert Cheng1999-11-041-10/+5
| | | | Added uname to show host information automatically.
* [svn-r1820] Updated with deleted fileAlbert Cheng1999-11-041-1/+0
|
* [svn-r1818] Testpar have been integrated. File no longer needed.Albert Cheng1999-11-041-44/+0
|
* [svn-r1816] Snapshot version 1.3 release 4Albert Cheng1999-11-043-472/+555
|
* [svn-r1815] added a definition for the S_ISDIR macro and a typedef for mode_tPatrick Lu1999-11-031-1/+8
|
* [svn-r1814] * 1999-11-03Robb Matzke1999-11-033-13/+25
| | | | | | | | | | | ** config/depend1.in We don't regenerate the Dependencies files if we're compiling in the source tree because `gcc -MM' doesn't output enough information to make the result usable when compiling outside the source tree. ** src/H5config.h.in Regenerated to include HAVE_LIBMPI and HAVE_LIBMPIO because of recent changes to configure.in
* [svn-r1813] moved the globals out of the tools lib(h5findshd.c) into the ↵Patrick Lu1999-11-034-51/+101
| | | | | | | | | h5toh4 tool. had to change some of the functions in the h5findshd.c file since we didn't have the globals anymore. these changes also affected the h5toh5.c file. passes all tests on unix
* [svn-r1812] Updated with recently added and deleted files.Albert Cheng1999-11-031-2/+7
|
* [svn-r1811] Purpose:Albert Cheng1999-11-032-12/+188
| | | | | | | | | | | | | | | | New feature configure.in: When just --enable-parallel is used, will try to test if MPI and MPI-IO library codes are linkable. If not, try -lmpi and -lmpio as the most commonly used library names for them. Also, set default value for RUNPARALLEL if not set. Now, for systems, like SGI Crays where there are the system supported MPI libraries, "./configure --enable-parallel" would configure correctly. Configure: Derived from configure.in via autoconf. Platform tested: SGI O2K.
* [svn-r1809] Updated with new files name and locations.Albert Cheng1999-11-031-2/+2
|
* [svn-r1807] This file wasn't supposed to be part of CVS.Robb Matzke1999-11-021-10682/+0
|
* [svn-r1806] * 1999-11-02Robb Matzke1999-11-028-3474/+3606
| | | | | | | | | | | | | ** bin/rpmsync ** config/depend1.in Tweaks for versions of `make' that can't search directories. ** examples/Dependencies ** src/Dependencies ** test/Dependencies ** testpar/Dependencies ** tools/Dependencies Regenerated all these with more complete path names.
* [svn-r1805] more changes. I found some duplicate functions in the library ↵Patrick Lu1999-11-024-450/+123
| | | | | | | | | | | and the dumper. so i moved the dumper stuff out to the libary. Had to change some functions in h5findshd so they would stop using globals that shouldn't be defined in the lib. I will remove the globals next. also the h5findshd.c has an extra member to the struct for that objects in the table so i added that into the appropriate place. the dumper is working ok now but the h5toh4 is still broken.
* [svn-r1804] updated the file to reflect some changes that were made in V1.2 ↵Patrick Lu1999-11-021-1/+5
| | | | | | that weren't in this file
* [svn-r1802] Changes since 19991019Robb Matzke1999-11-0141-787/+12451
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ---------------------- ./MANIFEST ./configure.in ./configure [REGENERATED] Added more checking for `make' features. ./Makefile.in ./doc/Makefile.in ./doc/html/Makefile.in ./doc/html/Tutor/Makefile.in ./examples/Makefile.in ./pablo/Makefile.in ./src/Makefile.in ./test/Makefile.in ./testpar/Makefile.in ./tools/Makefile.in ./config/commence.in ./config/conclude.in ./config/depend.in [REMOVED] ./config/depend1.in [NEW] ./config/depend2.in [NEW] ./config/depend3.in [NEW] ./config/depend4.in [NEW] ./config/dependN.in [NEW] The directory search stuff was moved into commence.in, thereby shortening the Makefile.in prologues. ./doc/html/Dependencies [NEW] ./doc/html/Tutor/Dependencies [NEW] ./examples/Dependencies [NEW] ./src/Dependencies [NEW] ./test/Dependencies [NEW] ./testpar/Dependencies [NEW] ./tools/Dependencies [NEW] The `.distdep' files were all renamed to `Dependencies' to make them more obvious. They are required (but may be empty) in every directory that has a Makefile.in that ends with @CONCLUDE@ (you'll get an obvious error from make if you forgot to create one). ./bin/trace ./src/H5.c Added H5E_major_t and H5E_minor_t although tracing only prints the integer value. ./src/H5E.c ./src/H5Epublic.h Added tracing information. ./src/H5FDcore.c ./src/H5FDfamily.c ./src/H5FDgass.c ./src/H5FDmpio.c ./src/H5FDsec2.c ./src/H5FDstdio.c Fixed places where FUNC_LEAVE() evaluated it's argument more than once. Added tracing information. Wrapped long lines. ./config/gnu-flags Fixed a syntax error when we don't have a gnu compiler.
* [svn-r1801] Purpose:Albert Cheng1999-10-301-11/+31
| | | | | | | | | | | | | | | Bug fix. Description: If the H4DUMP (hdp) is not executable for some reasons (e.g., not in $PATH), it produced zero sized files. The test script did not detect the abnormality but compared the zero sized files the same and concluded the test passed. Solution: Test if H4DUMP can produce valid output. If not, print warning messages. Also check the size of output files to make sure they are reasonably valid. Platform tested: Linux.
* [svn-r1800] moved the code from the dumper that iterates thru the files and ↵Patrick Lu1999-10-294-260/+307
| | | | | | | | stores the info into the tables into the tools lib. h5findshd-had some of the same functions so i removed them for now
* [svn-r1799] got rid of the include of the private header filePatrick Lu1999-10-291-2/+7
|
* [svn-r1798] Changed the URL to use a gass-signon.Albert Cheng1999-10-283-3/+3
|
* [svn-r1797] included the h5private.h file to get a definition of F_OK andPatrick Lu1999-10-271-2/+3
| | | | got rid of the #error for WIN32
* [svn-r1796] included the new h5fdstdio.c file into the dll and the lib projectsPatrick Lu1999-10-271-0/+0
|
* [svn-r1795] Removed an extra return statement resulted from the previous ↵Albert Cheng1999-10-261-1/+1
| | | | changes.
* [svn-r1794] Snapshot version 1.3 release 3Albert Cheng1999-10-264-1105/+1316
|
* [svn-r1793] Corrected a typo.Albert Cheng1999-10-261-1/+1
|
* [svn-r1792] Updated MANIFEST.Albert Cheng1999-10-261-0/+3
|
* [svn-r1791] Moved the MANIFEST checking to a separate command file ↵Albert Cheng1999-10-262-42/+49
| | | | | | (chkmanifest) so that it can be invoked individually.
* [svn-r1790] Removed the tag of the snapshot version. The tagging created a longAlbert Cheng1999-10-251-1/+1
| | | | list of tags no one ever used.
* [svn-r1789] Changed the ftp test site to a different machine. TheAlbert Cheng1999-10-233-3/+3
| | | | previous machine is retired.
* [svn-r1788] Converted all the VFL drivers except for the stdio and multi ↵Quincey Koziol1999-10-238-675/+1166
| | | | | | drivers back into the "internal" HDF5 coding standard.
* [svn-r1787] Removed CVS merged warnings stuff that got check in by mistake.Albert Cheng1999-10-231-5/+0
|
* [svn-r1786] Added stdio VFL driver to the list of VFL drivers the user can test.Quincey Koziol1999-10-201-0/+3
|
* [svn-r1785] Added stdio VFL driver, which uses the new public H5E calls.Quincey Koziol1999-10-206-12/+745
|
* [svn-r1784] Updated with autoconf, I think...Quincey Koziol1999-10-201-452/+535
|
* [svn-r1783] Added public H5Epush... routines and macros.Quincey Koziol1999-10-202-0/+55
|
* [svn-r1782] revised the tests and made the timing tests bat file. like in ↵Patrick Lu1999-10-181-0/+0
| | | | the release version
* [svn-r1769] Snapshot version 1.3 release 2Albert Cheng1999-10-162-2/+2
|
* [svn-r1768] Deriverd from configure.in.Albert Cheng1999-10-151-3/+0
|
* [svn-r1767] MANIFEST:Albert Cheng1999-10-153-286/+155
| | | | | | | | | Updated. configure.in: Removed the test for -lxnet in the GASS-driver part. There is no need for it and it does not exist in other machines like IRIX64. configure: Deriverd from configure.in.
* [svn-r1766] Modified to support install-doc.Albert Cheng1999-10-151-0/+64
|
* [svn-r1765] Makefile.in:Albert Cheng1999-10-154-115/+7
| | | | | | | | | configure.in: Modified to support install-doc. configure: Derived from configure.in via autoconf. INSTALL_MAINT: Moved to doc/html/Lib_Maint.html
* [svn-r1764] Added the install-doc and uninstall-doc targets.Albert Cheng1999-10-152-0/+34
|
* [svn-r1763] Shared mode works fine now with IRIX64. Removed the special ↵Albert Cheng1999-10-151-3/+0
| | | | disable-shared.
* [svn-r1762] Folded in changes from v1.2 for install-doc.Albert Cheng1999-10-151-0/+31
|
* [svn-r1761] Lib_Maint.html was toplevel INSTALL_Maint.Albert Cheng1999-10-152-0/+167
| | | | Folded in changes from v1.2 for install-doc.
* [svn-r1760] Added a paragraph of how to use bin/install-sh explicitedly.Albert Cheng1999-10-151-0/+6
|
* [svn-r1759] Corrected a few more compiler warnings.Quincey Koziol1999-10-154-24/+24
|
* [svn-r1754] Fixed file prologue.Robb Matzke1999-10-151-2/+2
|
* [svn-r1753] Changes since 19991007Robb Matzke1999-10-1516-264/+1025
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ---------------------- ./configure.in ./src/H5config.h.in [REGENERATED] The /usr/ncsa/{include,lib} directories are only added if they actually exist. This fixes a warning on some systems. Checks for the <pdb.h> header file and also for either the PDB or Silo library, and if found prepares to compile the pdb2hdf program. ./config/distdep Relative path names for include files are changed to base names since the makefile contains the logic for searching and since it's likely that building the .distdep files happed from a location other than where they would be used in the file system. ./config/conclude.in Fixed shell errors when `for' loops iterate over nothing for the `uninstall' target. ./src/H5D.c ./src/H5Oefl.c File names for the external files are added to the heap when the dataset is created instead of when the object header is written. This fixes a rare infinite recursion bug. ./src/H5FD.c ./src/H5FDpublic.h Optimization to the free list causes H5FD_alloc() usage to go from >10 seconds to <0.4 second for one example (converting a 30MB equation of state file from PDB to HDF5 format). The optimization is to simply keep track of the largest item in the free list and not search the free list when the largest item is not big enough to satisfy the request. ./src/H5FDcore.c ./src/H5FDcore.h ./test/h5test.c If the `backing_store' property is true then a flush causes the entire contents of memory to be written to the specified file. This is in preparation for the ASCI/red optimizations and is currently tested by the pdb2hdf `--cached' switch. ./src/H5Odtypes.c Wrapped three long lines. ./tools/Makefile.in ./tools/pdb2hdf.c [NEW] A PDB-to-HDF5 translator. It only translates meta data -- the resulting HDF5 points into the PDB file for the raw data.
* [svn-r1744] i removed an extra function that wasn't being usedPatrick Lu1999-10-131-173/+1
|
* [svn-r1743] fixed some compilation errors on unixPatrick Lu1999-10-131-3/+4
|