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/Makefile.in | |
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/Makefile.in')
-rw-r--r-- | src/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 82ef99d..20bd313 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -38,7 +38,7 @@ PUB_HDR=H5public.h H5Apublic.h H5ACpublic.h H5Bpublic.h H5Dpublic.h \ H5Epublic.h H5Fpublic.h H5FDpublic.h H5FDfamily.h H5FDgass.h H5FDmpio.h \ H5FDsec2.h H5FDcore.h H5FDmulti.h H5FDstdio.h H5Gpublic.h H5HGpublic.h \ H5HLpublic.h H5Ipublic.h H5MMpublic.h H5Opublic.h H5Ppublic.h H5Rpublic.h \ - H5RApublic.h H5Spublic.h H5Tpublic.h H5Zpublic.h H5config.h hdf5.h \ + H5RApublic.h H5Spublic.h H5Tpublic.h H5Zpublic.h H5pubconf.h hdf5.h \ H5api_adpt.h ## Other header files (not to be installed)... @@ -46,7 +46,8 @@ PRIVATE_HDR=H5private.h H5Aprivate.h H5Apkg.h H5ACprivate.h H5Bprivate.h \ H5Dprivate.h H5Eprivate.h H5Fprivate.h H5FDprivate.h H5Gprivate.h \ H5Gpkg.h H5HGprivate.h H5HLprivate.h H5Iprivate.h H5MFprivate.h \ H5MMprivate.h H5Oprivate.h H5Pprivate.h H5Rprivate.h H5RAprivate.h \ - H5Sprivate.h H5Tprivate.h H5TBprivate.h H5Tpkg.h H5Vprivate.h H5Zprivate.h + H5Sprivate.h H5Tprivate.h H5TBprivate.h H5Tpkg.h H5Vprivate.h \ + H5Zprivate.h H5config.h ## Number format detection H5Tinit.c: H5detect |