| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
confusing the
HP compiler.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
----------------------
./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.
|
| |
|
|
|
|
|
|
| |
information is
being written correctly.
|
|
|
|
|
|
| |
H5P_DATA_XFER.
This should eventually be deprecated and the alias removed.
|
|
|
|
|
|
|
| |
the buffer
needed for the object header was being computed and another in incorrectly
decoding the "base" type of the VL type.
|
| |
|
| |
|
|
|
|
| |
option
|
| |
|
| |
|
|
|
|
|
|
| |
INSTALL.ascired -> INSTALL_TFLOPS
INSTALL.ibm.sp.parallel -> bin/config_para_ibm_sp.sh
INSTALL_parallel.ascired -> bin/config_para_tflops.sh
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
----------------------
./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.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
| |
testing with the new
bat files
|
|
|
|
|
|
| |
them with 2 bat
files that take command line arguments to determine which test to run
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
| |
just casted the isdigit and isprintf parameter
|
|
|
|
| |
just casts with the parameters for the isdigit and isprint functions
|
|
|
|
| |
changed sdims to int
|
| |
|
| |
|
| |
|
|
|
|
| |
removed some of the warnings.
|
|
|
|
|
|
| |
from the
zip file
|
| |
|
|
|
|
| |
problems.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
h5tools.h- added a define for OBJECTID-->"OBJECTID"
h5dump.c - added an option in there to print object id's
still needs some testing but I just wanted the changes to be put up there before i
forget
|
|
|
|
|
|
| |
H5P_DATA_XFER
were using the old names.
|