diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2013-09-06 15:15:50 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2013-09-06 15:15:50 (GMT) |
commit | 145f1ce9e35414e40abf00c139114f69c5e1322d (patch) | |
tree | b2528c469291939818ff0b296ce132138e12bb8e /src/H5PL.c | |
parent | ddbc3c841cc71254243e87ede6dd99c403507914 (diff) | |
download | hdf5-145f1ce9e35414e40abf00c139114f69c5e1322d.zip hdf5-145f1ce9e35414e40abf00c139114f69c5e1322d.tar.gz hdf5-145f1ce9e35414e40abf00c139114f69c5e1322d.tar.bz2 |
[svn-r24104] HDFFV-8345: add User Defined filters to h5repack.
Reviewed in H5T-61
Tested: local linux - cmake and autotools
Diffstat (limited to 'src/H5PL.c')
-rw-r--r-- | src/H5PL.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -43,7 +43,6 @@ /* Windows support */ #ifdef H5_HAVE_WIN32_API -#define H5PL_DEFAULT_PATH "%ALLUSERSPROFILE%/hdf5/lib/plugin" #define H5PL_PATH_SEPARATOR ";" /* Handle for dynamic library */ @@ -66,7 +65,6 @@ typedef const void *(__cdecl *H5PL_get_plugin_info_t)(void); /* Unix support */ #else /* H5_HAVE_WIN32_API */ -#define H5PL_DEFAULT_PATH "/usr/local/hdf5/lib/plugin" #define H5PL_PATH_SEPARATOR ":" /* Handle for dynamic library */ @@ -87,6 +85,8 @@ typedef const void *(__cdecl *H5PL_get_plugin_info_t)(void); typedef const void *(*H5PL_get_plugin_info_t)(void); #endif /* H5_HAVE_WIN32_API */ +#define H5PL_DEFAULT_PATH H5_DEFAULT_PLUGIN + /* Special symbol to indicate no plugin loading */ #define H5PL_NO_PLUGIN "::" |