summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r1999] Correctly detect gcc 2.95.x and Pentium Pro|Pentium II|etc. ↵Quincey Koziol2000-03-041-12/+48
| | | | processors.
* [svn-r1996] Snapshot version 1.3 release 15Albert Cheng2000-03-032-2/+2
|
* [svn-r1995] configure.in:Albert Cheng2000-03-0110-75/+74
| | | | | | | | | | | | | | | | | | Makefile.in: acconfig.h: src/H5F.c: src/H5FDdpss.c: src/H5FDdpss.h: src/H5config.h.in: test/dpss_read.c: test/dpss_write.c: Changed the name DPSS to GRIDSTORAGE since that is the real name of the API from ANL. DPSS is just one of the protocols it can use. Changed a bug in the --with-ssl option. Makefile.in: Removed the copying of Makefile.dist since it caused problems when doing a make distclean in a --srcdir configured directory.
* [svn-r1994] Snapshot version 1.3 release 14Albert Cheng2000-02-292-2/+2
|
* [svn-r1993] Straightened out error messages, they were out of sync with the ↵Quincey Koziol2000-02-291-1/+29
| | | | | | error codes in H5Epublic.h
* [svn-r1992] added a few definitions for formats in the dump structurePatrick Lu2000-02-281-1/+5
| | | | fixed the bug that was crashing for the development version of the dumper
* [svn-r1990] Elena Pourmal2000-02-241-1/+2
| | | | | | | Problem: Example did not define string datatype correctly for one of the attributes. H5Tset_strpad call was missing. This fix closes bug #323.
* [svn-r1989] removed the variable for the attribute that I didn't need.Patrick Lu2000-02-241-1/+1
|
* [svn-r1988] fixed the crashing bug on sangamon with the shared libs. I had ↵Patrick Lu2000-02-241-1/+0
| | | | | | a line thet closed the attribute that wasn't ever opened. deleted the line and it was all ok.
* [svn-r1986] entered a value for the info.line_indent value and moved some of ↵Patrick Lu2000-02-231-10/+11
| | | | | | the other definitions out of the conditionals. fixed the bug for the SDScompound.h5
* [svn-r1985] fixed the bug with the memory alignment errorPatrick Lu2000-02-221-17/+46
|
* [svn-r1984] Use one big cat to the help message (instead of the old way of echo)Albert Cheng2000-02-221-23/+29
| | | | because the messages are getting really big (my fault).
* [svn-r1983] Added two new options.Albert Cheng2000-02-221-9/+44
| | | | | | | | | | srcdirname <dir>: Use <dir> as the srcdir testing directory if srcdir is choosen. If <dir> starts with '-', it is append to the default name E.g., "snapshot srcdir srcdirname -xx" uses hostname-xx [Default is hostname] op-configure <option>: Pass <option> to the configure command
* [svn-r1982] Snapshot version 1.3 release 13Albert Cheng2000-02-222-2/+2
|
* [svn-r1981] Make sure new file created in the FTP area have all readiable bitsAlbert Cheng2000-02-221-0/+2
| | | | | on. This does not dictate the accessibility at the NCSA FTP sites which use AFS ACL. Just to make it complete.
* [svn-r1980] Snapshot version 1.3 release 12Albert Cheng2000-02-222-2/+2
|
* [svn-r1979] Purpose:Albert Cheng2000-02-191-1/+3
| | | | | | | | | | | | | | | | | | | | | | Feature "improvement". Problem: The Makefile target triggers gmake to redo the whole auto-configure process if it sees any autoconfigure related files changed. It causes couple problems. One is that when multiple machines using --srcdir are running make, they may detect the changes and launch the autoconf at the same time. These end up as multiple hosts updating the same srcdir area together--bad things can happen. Another one is that when one modifies some Makefile.in, then try "make distclean" before launching the configure process. Instead of cleaning things, it started a configure, recreate all Makefiles and other files, then finally come around to do the distclean--who knows what it cleans by now since the Makefile is changed too. Last problem was that this auto-process will launch even for command "gmake -n ...". Solution: Renamed Makefile target to reconfigure so that the auto-checking is still available but must be launched explicitedly. If one wishes to have the auto-checking as default, one may do alias gmake "\gmake -i reconfigure; gmake \!* ".
* [svn-r1978] configure.in:Albert Cheng2000-02-192-315/+321
| | | | | | | Removed the unnecessary warning message from the SSL test. Made it to set variable SSL instead. configure: Auto-generated from configure.in.
* [svn-r1977] Updated with the newly added config file for cygwin.Albert Cheng2000-02-191-0/+1
|
* [svn-r1976] Added the .lo of H5detect and H5Tinit to the cleanup list.Albert Cheng2000-02-191-1/+1
|
* [svn-r1975] Purpose:Albert Cheng2000-02-185-396/+400
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Configuration improvement Problem: Arabica has a zlib library that is a dynamic lib in /usr/ncsa/lib. Binary generated would fail to run with a missig libz.so complain if /usr/ncsa/lib is not in $LD_LIBRARY_PATH. This exposed the problem that if the binary is linked with -L$mylibpath -lxyz where libxyz is a dynamic type, the binary can't run if $mylibpath is not in $LD_LIBRARY_PATH (or equivalent) or as part of the system default library paths (e.g., /usr/lib, /usr/local/lib). This problem also caused failures during configure (when trying to see what format to print long long) and during H5detect. The base cause is because libtool does not "transfer" the knowledge of -L$mylibpath to the wrapper file its mode=link generates. Solution: bin/ltmain.sh: Changed it so that it transfers the libpaths from -Llibpaths to the wrapper generated. I used the already defined variable finalize_shlibpath. Not sure it is correct to use it this way. Need to check on this. configure.in: Put in a patch to transfer information from LDFLAGS to LD_LIBRARY_PATH right before the AC_TRY_RUN. The above fix for ltmain.sh does not work here because libtool is generated later than this point. There should be a cleaner way to do this. Removed the hardcode of NCSA_LT_LINK_EXE because it is no longer needed. commence.in: Removed the hardcode of NCSA_LT_LINK_EXE because it is no longer needed. Makefile.in: Another patch of LDFLAGS to LD_LIBRARY_PATH because I could not make it to generate H5detect in the wrapper form of libtool. Need to make it to use the libtool correctly. Later. Platform tested: arabica (solaris 2.7) baldric (solaris 2.6)
* [svn-r1974] Added const to the h5dump_region third argument to quite a compilerAlbert Cheng2000-02-181-1/+1
| | | | complain and it is more correct this way too.
* [svn-r1973] fixed the dataset regions problem with the dumper.Patrick Lu2000-02-174-7/+39
| | | | | | now the dump structure contains 2 extra members that tell how to format the data for the dataset regions(blocks and pts). had to give h5ls values for these
* [svn-r1972] updated it for the removal of the newline from the dumper codePatrick Lu2000-02-171-1/+1
|
* [svn-r1971] removed a newline from a string after the enum type is printedPatrick Lu2000-02-171-1/+1
|
* [svn-r1970] updated the ddl.Patrick Lu2000-02-171-7/+4
| | | | removed a bug that was there before
* [svn-r1969] fixed a bug with the objrefs. added a format string to the dump ↵Patrick Lu2000-02-173-5/+26
| | | | | | struct to display the format for the obj refs.
* [svn-r1968] removed the directory name from the namePatrick Lu2000-02-161-1/+1
|
* [svn-r1967] changed the name of the file and added the text at the beginning ↵Patrick Lu2000-02-162-1/+7
| | | | | | that tells what command we used to generate the ddl file
* [svn-r1966] Patrick Lu2000-02-161-4/+2
| | | | removed some commented code.
* [svn-r1965] Added 2000 to copyright dates.Barbara Jones2000-02-161-7/+9
|
* [svn-r1963] removed files from the tools lib projectsPatrick Lu2000-02-151-0/+0
|
* [svn-r1962] update the name of the filePatrick Lu2000-02-153-8/+5
|
* [svn-r1961] update the names of the filesPatrick Lu2000-02-152-2/+2
|
* [svn-r1960] updated againPatrick Lu2000-02-151-8/+4
|
* [svn-r1959] updated to remove an error in the namePatrick Lu2000-02-151-1/+1
|
* [svn-r1958] updated the ddls for the changes that were made to the dumperPatrick Lu2000-02-156-499/+387
|
* [svn-r1957] removed the program type variable from the filePatrick Lu2000-02-151-5/+2
|
* [svn-r1956] in h5tools.h I added a fwe new members to the struct for the ↵Patrick Lu2000-02-153-106/+254
| | | | | | | | | formatting. in h5dump.c just initialized the values for the formatting struct. in h5tools.c made some changes in the printing area to get the dump output to look closer to what we wanted. the strings are currently not printing correctly. also removed the program type variable from here.
* [svn-r1955] Updated for Cygwin.Raymond Lu2000-02-091-0/+7
|
* [svn-r1954] This file handles configuration of Cygwin on PCsRaymond Lu2000-02-091-0/+20
|
* [svn-r1953] replaced the HAVE__O_BINARY flag with a O_BINARYPatrick Lu2000-02-091-1/+1
|
* [svn-r1952] removed the HAVE__OBINARY flagPatrick Lu2000-02-091-0/+0
|
* [svn-r1951] Tweaks to detect the shared libraries on NCSA's systems, so that ↵Quincey Koziol2000-01-304-624/+721
| | | | | | Albert's automated tests will work correctly on arabica.
* [svn-r1950] Snapshot version 1.3 release 11Albert Cheng2000-01-262-2/+2
|
* [svn-r1949] Problem:Albert Cheng2000-01-265-11/+11
| | | | | | | | | | | | The Dependencies files were generated in $srcdir even when --srcdir is used. It caused conflicts if multiple hosts are doing make sharing the same $srcdir. It also violated the rule that --srcdir would not modify the content of $srcdir which could be on a read-only media like a CD-ROM. Solution: Dependencies files are generated in the "current" directory. Platform tested: dangermouse (linux), modi4 (IRIX64).
* [svn-r1948] File was changed by something, probably $(TRACE), automagically.Albert Cheng2000-01-261-1/+2
| | | | The changes seem harmless. So checking it in once for all.
* [svn-r1947] Changed the test files prefix to use the h5_fixname() in ↵Albert Cheng2000-01-265-43/+43
| | | | | | | | | | | | test/libh5test.a. Makefile.in: Added test/ as one of the -I directories to search for header files. Needed because <h5test.h> is used. t_file.c t_mpi.c testphdf5.c testphdf5.h: Added FILENAME to meet the assumption in h5test.h. (May use CLEANUP in the future.) Moved the prefix setting to the h5_fixname().
* [svn-r1946] Added a the PARA-Prefix for parallel test files for the needs thatAlbert Cheng2000-01-262-20/+67
| | | | | | serial and parallel test files are tested in different file systems. Added the global variable, paraprefix, so that it can be set via command line option.
* [svn-r1945] Add tests for "H5S_SELECT_PREPEND" and "H5S_SELECT_APPEND" ↵Quincey Koziol2000-01-211-5/+119
| | | | | | operations to point selections.