diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2015-01-26 18:03:18 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2015-01-26 18:03:18 (GMT) |
commit | eb3900554ef5f40d289cadd101aeed55b16ae233 (patch) | |
tree | be3185a3f35b2d00cceedb13cf42083671d9d41c /src/H5PL.c | |
parent | f4e69ad57949288e845b22650db0968772269ff2 (diff) | |
download | hdf5-eb3900554ef5f40d289cadd101aeed55b16ae233.zip hdf5-eb3900554ef5f40d289cadd101aeed55b16ae233.tar.gz hdf5-eb3900554ef5f40d289cadd101aeed55b16ae233.tar.bz2 |
[svn-r26036] HDFFV-8736: Patch H5PL.c and test for cygwin plugin support.
Tested: local linux and cygwin
Diffstat (limited to 'src/H5PL.c')
-rw-r--r-- | src/H5PL.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -405,8 +405,14 @@ H5PL__find(H5PL_type_t plugin_type, int type_id, char *dir, const void **info) /* The library we are looking for should be called libxxx.so... on Unix * or libxxx.xxx.dylib on Mac. */ +#ifndef __CYGWIN__ if(!HDstrncmp(dp->d_name, "lib", (size_t)3) && (HDstrstr(dp->d_name, ".so") || HDstrstr(dp->d_name, ".dylib"))) { +#else + if(!HDstrncmp(dp->d_name, "cyg", (size_t)3) && + HDstrstr(dp->d_name, ".dll") ) { + +#endif h5_stat_t my_stat; size_t pathname_len; htri_t found_in_dir; |