diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2013-03-19 04:22:34 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2013-03-19 04:22:34 (GMT) |
commit | af9a3abb3dcb01e719abf8eba5fd588c20c89d5c (patch) | |
tree | 6aa572a2460bc06332c7abedac2af45668a97853 /src/H5private.h | |
parent | beccb8a0fcb8a380c7cd140852a486885b8e38c0 (diff) | |
download | hdf5-af9a3abb3dcb01e719abf8eba5fd588c20c89d5c.zip hdf5-af9a3abb3dcb01e719abf8eba5fd588c20c89d5c.tar.gz hdf5-af9a3abb3dcb01e719abf8eba5fd588c20c89d5c.tar.bz2 |
[svn-r23380] Description:
Review & cleanup code.
Diffstat (limited to 'src/H5private.h')
-rw-r--r-- | src/H5private.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/H5private.h b/src/H5private.h index f1f5dbb..78d3d9d 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -149,6 +149,17 @@ # include <io.h> #endif +/* + * Dynamic library handling. These are needed for dynamically loading I/O + * filters and VFDs. + */ +#ifdef H5_HAVE_DLFCN_H +#include <dlfcn.h> +#endif +#ifdef H5_HAVE_DIRENT_H +#include <dirent.h> +#endif + #ifdef H5_HAVE_WIN32_API /* The following two defines must be before any windows headers are included */ |