diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2010-03-18 02:44:26 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2010-03-18 02:44:26 (GMT) |
commit | 0a7809a659fd320e57c3efe96fce901d4cababfe (patch) | |
tree | c49aa00c13ead8e8e5e87b704524fe9a7735618d /src/H5.c | |
parent | 0ac03c78900404696ff2427556bc815adf56744c (diff) | |
download | hdf5-0a7809a659fd320e57c3efe96fce901d4cababfe.zip hdf5-0a7809a659fd320e57c3efe96fce901d4cababfe.tar.gz hdf5-0a7809a659fd320e57c3efe96fce901d4cababfe.tar.bz2 |
[svn-r18415] Description:
Move the libhdf5.settings information out of src/H5Tinit.c and into a
separate header file (src/H5lib_settings.h), which is generated at build time
(not configure time) with the src/H5make_libsettings generator program.
Tested on:
Linux/32 2.6 (jam)
Mac OS X/32 10.6.2 (amazon)
Diffstat (limited to 'src/H5.c')
-rw-r--r-- | src/H5.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -22,6 +22,8 @@ /* Headers */ /***********/ #include "H5private.h" /* Generic Functions */ +#include "H5lib_settings.h" /* Library build setings */ +#include "H5ACprivate.h" /* Metadata cache */ #include "H5Dprivate.h" /* Datasets */ #include "H5Eprivate.h" /* Error handling */ #include "H5FLprivate.h" /* Free lists */ |