Commit Graph

1718 Commits

Author SHA1 Message Date
Patrick Lu
aa88b36b52 [svn-r1742] changed the name of the objectid macro to objid. conflicted with a windows
define
1999-10-13 10:11:02 -05:00
Patrick Lu
478038d68d [svn-r1741] write 0f0f0f0f into the *a.raw and *b.raw files so if the os doesn't put 0's in
when it skips over part of the file the garbage is not left in there.
fixes problems with win 98
1999-10-13 10:09:30 -05:00
Quincey Koziol
d5db5d6991 [svn-r1739] Cleaned up some warnings from the HP compiler. 1999-10-08 19:34:31 -05:00
Quincey Koziol
acc0841fe5 [svn-r1738] Took out the "UNUSED" macros from the parameter lists, they were confusing the
HP compiler.
1999-10-08 19:34:04 -05:00
Barbara Jones
f5db00939a [svn-r1733] Change section 4.- to "asked, but not required" from "must" 1999-10-07 12:48:53 -05:00
Robb Matzke
20e748496e [svn-r1732] Changes since 19991007
----------------------

./src/H5FDcore.c
	Includes private headers instead of public in order to use the
	`UNUSED' macro.

./src/H5FDpublic.h
	Includes H5public.h just in case.

./src/H5P.c
	Removed two unused variables in H5P_copy()

./src/H5FDgass.h
	Fixed a C++ comment after a `#endif'

./src/Makefile.in
	The H5FDgass.h file is public and must be installed in order for
	applications to be able to use HDF5.

./tools/h5tools.c
	Removed an unused variable.
1999-10-07 11:51:49 -05:00
Albert Cheng
766d480daf [svn-r1731] Snapshot version 1.3 release 1 1999-10-06 15:58:07 -05:00
Quincey Koziol
6f649e66b2 [svn-r1730] Close & re-open the file to make certain that the VL datatype information is
being written correctly.
1999-10-06 13:12:19 -05:00
Quincey Koziol
02d8d63ad5 [svn-r1729] Put in "alias" for old H5P_DATASET_XFER to map it to the new H5P_DATA_XFER.
This should eventually be deprecated and the alias removed.
1999-10-06 13:11:46 -05:00
Quincey Koziol
ead8e57ed2 [svn-r1728] Corrected two bugs in VL types, one in which the wrong length of the buffer
needed for the object header was being computed and another in incorrectly
decoding the "base" type of the VL type.
1999-10-06 13:10:47 -05:00
Albert Cheng
44fa8e1e3e [svn-r1727] Updated it with new file. 1999-10-06 11:38:04 -05:00
Patrick Lu
c709517e37 [svn-r1725] updated the config file to print the long long 1999-10-06 10:05:49 -05:00
Patrick Lu
399bc2dc77 [svn-r1710] put in an entry for the objectids that i dump with the verbose option 1999-10-01 18:35:12 -05:00
Patrick Lu
cc0d72bfe7 [svn-r1709] *** empty log message *** 1999-10-01 16:56:00 -05:00
Albert Cheng
9eb5c310a0 [svn-r1708] Turned off compression feature if zlib.h is off. 1999-10-01 15:53:54 -05:00
Albert Cheng
a9b3674f97 [svn-r1707] Changed to different locations or filenames.
INSTALL.ascired -> INSTALL_TFLOPS
INSTALL.ibm.sp.parallel -> bin/config_para_ibm_sp.sh
INSTALL_parallel.ascired -> bin/config_para_tflops.sh
1999-10-01 13:00:02 -05:00
Patrick Lu
bc87d2a2ce [svn-r1705] update the testhdf5 and testhdf5dll projects to include the new file 1999-10-01 10:31:38 -05:00
Albert Cheng
b329d3ebae [svn-r1704] Used n.m. numbers to identify paragraphs. Added a table of content. 1999-10-01 10:25:39 -05:00
Quincey Koziol
53b90c7069 [svn-r1702] Closed some more memory leaks on failure conditions... 1999-09-30 21:02:59 -05:00
Quincey Koziol
ce08905a57 [svn-r1701] Closed a couple more resouce leaks.. 1999-09-30 17:13:08 -05:00
Albert Cheng
5d44f23ac0 [svn-r1700] Changed names of files to better reflect their purposes.
INSTALL.ascired:
    Becomes INSTALL_TFLOPS.
INSTALL_parallel.ascired:
    Becomes bin/config_para_tflops.sh
INSTALL.ibm.sp.parallel:
    Becomes bin/config_para_ibm_sp.sh
1999-09-30 12:15:06 -05:00
Robb Matzke
bdf0dbf7ed [svn-r1697] Changes since 19990915
----------------------

./src/H5public.h
	We undefine a bunch of things that could get redefined in the config
	file because some customers have applications that include headers
	from multiple packages, all of which might be using autoconf.

	Include <stdint.h> for the C9x types.

./test/h5test.h
	More flushing of stdout for when testing is redirected down a pipe.

./tools/h5ls.c
	Added a `-S' or `--simple' switch which causes the output to be
	simplified somewhat for easier parsing by other scripts. For instance,
	characters are escaped using a very simple mechanism instead of C's
	more complicated backslash notation, data doesn't have `{}' or `[]'
	characters interspersed for compound and array types, and data is
	printed with exactly one element per line.  This switch is now used by
	an HDF5-to-HTML CGI script being developed for the DMF people.

./tools/h5tools.c
./tools/h5tools.h
	The repeat threshold which controls how strings are printed when a
	character repeats a bunch of times is now settable at runtime instead
	of compile time. The default is to show all characters, like

	   "abceeeeeeeeeeeeeeeeeeeeeeeeeeeeeefgh"

	But if you set it to something like 5 then any sequence of 5 or more
	characters is replaced by something shorter, like:

	   "abc" 'e'x30 "fgh"	  or

	Added an `str_locale' property which describes how to escape special
	characters in strings. The default is C-like escapes but an
	alternative is ESCAPE_HTML which replaces all non-alphanumeric
	characters with a 3-character HTML escape of the form `%XX'

	Fixed a bug where empty strings didn't even have the quote characters
	printed. Now empty strings show up as `""' instead of absolutely
	nothing.

	Added a `per_line' property which controls the maximum number of
	elements which will appear per line of output. The default is infinity
	but in practice the right margin causes line breaks. By setting the
	`per_line' value to one and the right margin to a very large value one
	can achieve output with exactly one element per line.
1999-09-30 11:14:14 -05:00
Quincey Koziol
03d438979b [svn-r1696] Closed file handle leak for some failure cases. 1999-09-29 21:49:44 -05:00
Quincey Koziol
7c7bedb1ad [svn-r1695] Fixed various compiler warnings.. 1999-09-29 19:02:13 -05:00
Quincey Koziol
72cf03cdbd [svn-r1694] Fixed various compiler warnings 1999-09-29 19:01:55 -05:00
Patrick Lu
f1917f0754 [svn-r1693] removed the last warnings from here 1999-09-29 11:54:00 -05:00
Quincey Koziol
21b0e20bf7 [svn-r1691] Portability tweaks and warnings fixed 1999-09-28 19:31:07 -05:00
Quincey Koziol
523f5cebb2 [svn-r1690] Added VL string test code. 1999-09-28 19:30:47 -05:00
Quincey Koziol
4d5186a245 [svn-r1689] Mainly adding support for "native" variable-length strings (C only currently),
but I fixed lots of misc. compiler warnings in other code and also tracked down
the memory overwrite bug that was causing the development branch to core dump
on most machines.
1999-09-28 19:30:21 -05:00
Quincey Koziol
dd26601117 [svn-r1688] Added missing vector Cray (x90 series) configuration file. 1999-09-28 19:28:32 -05:00
Patrick Lu
54a0653341 [svn-r1686] updated the testing section to reflect the changes in the testing with the new
bat files
1999-09-28 15:51:51 -05:00
Patrick Lu
2a3327b24c [svn-r1685] removed the bat files that were used for testing and replaced them with 2 bat
files that take command line arguments to determine which test to run
1999-09-28 15:40:05 -05:00
Albert Cheng
95c384b425 [svn-r1683] Did some cleanup. 1999-09-28 13:20:40 -05:00
Albert Cheng
7a51c5d533 [svn-r1682] Added the ability to accept command line arguements. 1999-09-28 13:20:32 -05:00
Albert Cheng
f6a86261bc [svn-r1672] bin/ltconfig:
ltconfig used just an empty source file to test the share lib
    compiler options.  SUNSpro CC returns succeed though it issues
    a warning too.  ltconfig did not like the warning.
    Changed it to test with a file containing a simple dummy program.
    Platform tested: solaris 2.6 and 2.7

config/solaris2.x:
    Changed default compiler to "cc" now that Sunpro CC can produce
    static and shared codes correctly.
    Also added -s to PROD_CFLAGS to produce leaner binary files.
1999-09-27 19:01:32 -05:00
Patrick Lu
60f3f5e5c0 [svn-r1670] same changes as ont he release side 1999-09-27 11:45:10 -05:00
Patrick Lu
3ddb0009bc [svn-r1668] same fixes that were done on the release branch.
just casted the isdigit and isprintf parameter
1999-09-27 11:11:15 -05:00
Patrick Lu
eaaa292603 [svn-r1667] same fixes from the release branch were done here.
just casts with the parameters for the isdigit and isprint functions
1999-09-27 11:09:41 -05:00
Patrick Lu
b4dbf55fbe [svn-r1665] same changes i just made to the release version
changed sdims to int
1999-09-25 14:32:42 -05:00
Patrick Lu
72661ffc07 [svn-r1664] still getting some warnings. changed the sdims variable to int 1999-09-25 14:30:07 -05:00
Patrick Lu
3662fe727e [svn-r1663] added the include for fcntl.h here too 1999-09-25 13:59:55 -05:00
Patrick Lu
291c1af9c3 [svn-r1661] removed some of the warnings 1999-09-25 11:00:29 -05:00
Patrick Lu
46ed41925d [svn-r1659] brought changes from the release branch over to the developement
removed some of the warnings.
1999-09-25 10:32:04 -05:00
Patrick Lu
e347054ff8 [svn-r1657] added the 4 new batch files and removed the install instructions from the
zip file
1999-09-24 18:58:20 -05:00
Patrick Lu
22da5f858c [svn-r1655] added some lines in the test section about the dumptest batch files 1999-09-24 18:51:22 -05:00
Quincey Koziol
90fde6d638 [svn-r1653] Removed unneeded sys/fcntl.h include line, which was causing J90 problems. 1999-09-24 18:07:17 -05:00
Quincey Koziol
eea89e1e6c [svn-r1651] Fold in J90 changes 1999-09-24 17:35:30 -05:00
Albert Cheng
aeb5116600 [svn-r1645] conclude.in:
Problems:
    libtool generated compiler linking commands with dependency_libs
    appended to any dynamic library used but only "-lz -lmfhdf ..." were
    appended but "-L...", if used, are not appended.  So, the "-lz ..."
    information is incomplete and solaris cc does not allow even if the
    "-L..." information is provide in later part of the command.
    Solution:
    Included $LDFLAGS in the building of $(LIB).

irix5.x:
irix6.x:
    Added "-s" to PROD_CFLAGS so that production code are striped for
    smaller sizes.

Platform Tested:
    Solaris 2.6
1999-09-22 13:02:27 -05:00
Quincey Koziol
0d5399fc98 [svn-r1643] Tweaks to run on baldric better. 1999-09-22 00:47:46 -05:00
Quincey Koziol
1c273a615d [svn-r1642] Snapshot version 1.3 release 0 1999-09-21 18:42:21 -05:00