1997-10-21 07:14:35 +08:00
|
|
|
/* Define if the __attribute__(()) extension is present */
|
1997-10-23 06:08:14 +08:00
|
|
|
#undef HAVE_ATTRIBUTE
|
1997-10-21 07:14:35 +08:00
|
|
|
|
|
|
|
/* Define if the compiler understands the __FUNCTION__ keyword. */
|
1997-10-23 06:08:14 +08:00
|
|
|
#undef HAVE_FUNCTION
|
1998-02-04 01:03:13 +08:00
|
|
|
|
|
|
|
/* Define if we have parallel support */
|
|
|
|
#undef HAVE_PARALLEL
|
[svn-r339] Changes since 19980408
----------------------
./src/H5Osdspace.c
./html/H5.format.html
In the past we were allowed to have >2GB files on a 32-bit
machine as long as no dataset within the file was larger than
4GB (or whatever sizeof(size_t) is). That's been fixed now.
All dataset size calculations are done with `hsize_t' which is
normally defined as `unsigned long long'.
./src/H5F.c
./src/H5Ffamily.c
./src/H5Fprivate.h
./src/H5P.c
./src/H5Ppublic.h
The file family member size can now be set/queried. The
default is still 64MB, but it can be set to 1GB by saying:
H5Pset_family (plist, 30, H5P_DEFAULT);
When opening an existing file family the specified
bits-per-member is ignored and the first member of the family
determines the bits-per-member, which can be retrieved with
H5Pget_family().
./acconfig.h
./configure.in
./src/H5config.h
./src/H5public.h
Added `--disable-hsizet' so that those with old GCC compilers
(<2.8.1) can still compile the code.
./src/H5.c
./src/H5private.h
Added HDfprintf() which works just like fprintf() except you
can give `H' as a size modifier for the integer conversions
and supply an `hsize_t' or `hssize_t' argument without casting
it. For instance:
hsize_t npoints = H5Sget_npoints(space);
HDfprintf(stdout,"Dataset has %Hd (%#018Hx) points\n",
npoints, npoints);
You can now give `%a' as a format to print an address, but all
formating flags are ignored and it causes the return value of
HDfprintf() to not include the characters in the address (but
who uses the return value anyway :-). Example:
H5G_t *grp;
HDfprintf(stdout, "Group object header at %a\n",
&(grp->ent.header));
Added HDstrtoll() which works exactly like [HD]strtol() except
the result is an int64.
./src/debug.c
Large addresses can now be entered from the command-line. Use
either decimal, octal (leading `0') or hexadecimal (leading
`0x') when giving the address.
./src/h5ls.c
The printf format for dataset dimensions was changed to `%Hu'
to support large datasets.
./test/big.c [NEW]
A test for big datasets on 32-bit machines. This test is not
run by default. Don't try to run it on an nfs-mounted file
system or other file system that doesn't support holes because
it creates two 32GB datasets of all zero.
1998-04-10 04:22:11 +08:00
|
|
|
|
2000-04-11 02:23:38 +08:00
|
|
|
/* Define if we have thread safe support */
|
|
|
|
#undef HAVE_THREADSAFE
|
|
|
|
|
[svn-r339] Changes since 19980408
----------------------
./src/H5Osdspace.c
./html/H5.format.html
In the past we were allowed to have >2GB files on a 32-bit
machine as long as no dataset within the file was larger than
4GB (or whatever sizeof(size_t) is). That's been fixed now.
All dataset size calculations are done with `hsize_t' which is
normally defined as `unsigned long long'.
./src/H5F.c
./src/H5Ffamily.c
./src/H5Fprivate.h
./src/H5P.c
./src/H5Ppublic.h
The file family member size can now be set/queried. The
default is still 64MB, but it can be set to 1GB by saying:
H5Pset_family (plist, 30, H5P_DEFAULT);
When opening an existing file family the specified
bits-per-member is ignored and the first member of the family
determines the bits-per-member, which can be retrieved with
H5Pget_family().
./acconfig.h
./configure.in
./src/H5config.h
./src/H5public.h
Added `--disable-hsizet' so that those with old GCC compilers
(<2.8.1) can still compile the code.
./src/H5.c
./src/H5private.h
Added HDfprintf() which works just like fprintf() except you
can give `H' as a size modifier for the integer conversions
and supply an `hsize_t' or `hssize_t' argument without casting
it. For instance:
hsize_t npoints = H5Sget_npoints(space);
HDfprintf(stdout,"Dataset has %Hd (%#018Hx) points\n",
npoints, npoints);
You can now give `%a' as a format to print an address, but all
formating flags are ignored and it causes the return value of
HDfprintf() to not include the characters in the address (but
who uses the return value anyway :-). Example:
H5G_t *grp;
HDfprintf(stdout, "Group object header at %a\n",
&(grp->ent.header));
Added HDstrtoll() which works exactly like [HD]strtol() except
the result is an int64.
./src/debug.c
Large addresses can now be entered from the command-line. Use
either decimal, octal (leading `0') or hexadecimal (leading
`0x') when giving the address.
./src/h5ls.c
The printf format for dataset dimensions was changed to `%Hu'
to support large datasets.
./test/big.c [NEW]
A test for big datasets on 32-bit machines. This test is not
run by default. Don't try to run it on an nfs-mounted file
system or other file system that doesn't support holes because
it creates two 32GB datasets of all zero.
1998-04-10 04:22:11 +08:00
|
|
|
/* Define if it's safe to use `long long' for hsize_t and hssize_t */
|
|
|
|
#undef HAVE_LARGE_HSIZET
|
1998-04-25 05:26:32 +08:00
|
|
|
|
2001-08-07 00:01:44 +08:00
|
|
|
/* Define if the HDF5 v1.4 compatibility functions are to be compiled in */
|
|
|
|
#undef WANT_H5_V1_4_COMPAT
|
2000-11-14 05:25:12 +08:00
|
|
|
|
1998-11-03 01:58:28 +08:00
|
|
|
/* Width for printf() for type `long long' or `__int64', us. `ll' */
|
1998-04-25 05:26:32 +08:00
|
|
|
#undef PRINTF_LL_WIDTH
|
1998-07-30 00:43:59 +08:00
|
|
|
|
|
|
|
/* Define if `tm_gmtoff' is a member of `struct tm' */
|
|
|
|
#undef HAVE_TM_GMTOFF
|
|
|
|
|
1999-02-16 01:38:04 +08:00
|
|
|
/* Define if `__tm_gmtoff' is a member of `struct tm' */
|
|
|
|
#undef HAVE___TM_GMTOFF
|
|
|
|
|
1998-07-30 00:43:59 +08:00
|
|
|
/* Define if `timezone' is a global variable */
|
|
|
|
#undef HAVE_TIMEZONE
|
|
|
|
|
|
|
|
/* Define if `struct timezone' is defined */
|
|
|
|
#undef HAVE_STRUCT_TIMEZONE
|
1998-11-03 01:58:28 +08:00
|
|
|
|
|
|
|
/* Define if `struct stat' has the `st_blocks' field */
|
|
|
|
#undef HAVE_STAT_ST_BLOCKS
|
[svn-r879] Changes since 19981105
----------------------
./configure.in
./acconfig.h
./configure [REGENERATED]
./src/H5config.h.in [REGENERATED]
Added checks for functions, structs, constants, and header
files used in h5ls.c to determine the output width with
various Windows compilers and Unix variants.
Added check for <sys/stat.h> and defined
HAVE_SYS_STAT_H. Included <sys/stat.h> in H5private.h outside
the Posix.1 #include's section.
./src/H5RA.c
Less aggressive about failing -- rather returns false, which
allows type detection to continue.
./src/h5ls.c
Data types are displayed for datasets and named data types when
`-v' or `--verbose' is specified on the command-line. The
algorithm is a little different than the dumper because we're
trying to be human-friendly, not necessarily machine-friendly.
* Any data type which matches a native C type gets printed
something like `native double'.
* A floating point type that matches one of the IEEE standard
types but not one of the native types gets printed like `IEEE
64-bit big-endian float'.
* Other floating point values have information about sign bit
location; exponent size, location, and bias; and significand
size, location, and normalization.
* Padding and offsets are displayed for types that have
padding (precision != size), including internal padding for
some floating point data types.
* Non-native integer types are displayed like `32-bit
little-endian unsigned integer'.
* Compound data types have each member displayed including the
member name, byte offset within the struct, dimensions, index
permutation, and data type.
* String types are displayed like `256-byte null-terminated
ASCII string'.
* References are displayed like `8-byte unknown reference'
until the reference interface stabilizes a little.
* All other types including types not yet defined will be
printed like `4-byte class-9 unknown'.
The dimensionality of scalar datasets is printed like `{SCALAR}'
instead of just `{}'.
If external raw files are used to store a dataset then the offsets,
sizes, and file names of each are printed if `-v' or `--verbose'
was given on the command-line.
If an object is found and h5ls can't determine the object type then
it still tries to print the number of hard links, the OID, and any
comment that might be present if `-v' or `--verbose' was specified.
If the `-d' or `--dump' switch is turned on then ragged arrays will
report that the data can only be dumped by dumping the component
datasets explicitly. I'm not planning to implement this since
we're going to eventually change the whole way ragged arrays are
stored.
Compound data values do not have the component names displayed by
default when `-v' or `--verbose' is turned on. Instead, the names
can be displayed with `-l' or `--label'.
The output width is determined by the first rule that applies:
* If the `-wN', `-w N' or `--width=N' switch appeared on
the command line then use N for the output width.
* Query the OS for the tty width in a highly unportable way
borrowed from GNU `less' depending on what functions and
data structures were found during configuration (if any):
_getvideoconfig(), gettextinfo(), _srcsize(), ioctl(),
GetConsoleScreenBufferInfo(), struct videoconfig, struct
text_info, the TIOCGWINSZ ioctl, the TIOCGETD ioctl.
* If the `COLUMNS' environment variable is set then use
its value.
* Use the value 80.
Just for kicks, run Mark and Jim's test_vbt and then say `h5ls -dlsv
test.vbt'. You can also try it on the various *.h5 files in the
test/example directories.
./config/linux
Removed turning on parallel by default on Robb's macine.
1998-11-07 02:00:22 +08:00
|
|
|
|
|
|
|
/* Define if `struct text_info' is defined */
|
|
|
|
#undef HAVE_STRUCT_TEXT_INFO
|
|
|
|
|
|
|
|
/* Define if `struct videoconfig' is defined */
|
|
|
|
#undef HAVE_STRUCT_VIDEOCONFIG
|
|
|
|
|
|
|
|
/* Define if the ioctl TIOCGETD is defined */
|
|
|
|
#undef HAVE_TIOCGETD
|
|
|
|
|
|
|
|
/* Define if the ioctl TIOCGWINSZ is defined */
|
|
|
|
#undef HAVE_TIOCGWINSZ
|
2000-04-14 05:37:42 +08:00
|
|
|
|
|
|
|
/* Define if the Globus GASS is defined */
|
|
|
|
#undef HAVE_GASS
|
|
|
|
|
|
|
|
/* Define if the SRB is defined */
|
|
|
|
#undef HAVE_SRB
|
|
|
|
|
2000-09-20 01:04:46 +08:00
|
|
|
/* Define if the stream virtual file driver should be compiled */
|
|
|
|
#undef HAVE_STREAM
|
2000-11-09 07:06:03 +08:00
|
|
|
|
|
|
|
/* Define if `socklen_t' is defined */
|
|
|
|
#undef HAVE_SOCKLEN_T
|
2002-01-03 01:13:19 +08:00
|
|
|
|
|
|
|
/* Define if `dev_t' is a scalar */
|
|
|
|
#undef DEV_T_IS_SCALAR
|