diff options
author | Robb Matzke <matzke@llnl.gov> | 1999-11-16 19:08:14 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1999-11-16 19:08:14 (GMT) |
commit | 4b2dbd56519082544a101a54b43b17376d82fc5c (patch) | |
tree | ff0dc4040d69c8525f3f3e73c0e7dab30b331280 /src/H5private.h | |
parent | d78a1e0f04e18f0b9a3e352d1d386f7b17c85bc8 (diff) | |
download | hdf5-4b2dbd56519082544a101a54b43b17376d82fc5c.zip hdf5-4b2dbd56519082544a101a54b43b17376d82fc5c.tar.gz hdf5-4b2dbd56519082544a101a54b43b17376d82fc5c.tar.bz2 |
[svn-r1832] * 1999-11-16
** configure.in
** configure [REGENERATED]
** src/H5private.h
** src/H5public.h
** src/Makefile.in
Generates an H5pubconf.h file which is just like H5config.h except all
the preprocessor symbols have `H5_' prepended. This was done so that
the configuration results can be used in public header files without
polluting the namespace.
** src/H5.c
Added H5I_REFERENCE and H5I_VFL to the API tracing code so their names
are printed instead of just numbers.
** src/H5FDstdio.c
** tools/h5import.c
** tools/h5repart.c
** tools/pdb2hdf.c
Changed to use the `H5_' versions of configure results since these
files include only the public API.
** test/big.c
Removed a compiler warning.
** test/h5test.c
Removed unused code.
Diffstat (limited to 'src/H5private.h')
-rw-r--r-- | src/H5private.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5private.h b/src/H5private.h index d5985cb..0c43a91 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -12,7 +12,8 @@ */ #ifndef _H5private_H #define _H5private_H -#include <H5public.h> /* Include Public Definitions */ +#include <H5public.h> /* Include Public Definitions */ +#include <H5config.h> /* Include all configuration info */ /* * Include ANSI-C header files. |