summaryrefslogtreecommitdiffstats
path: root/src/H5PL.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2015-01-26 18:03:18 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2015-01-26 18:03:18 (GMT)
commiteb3900554ef5f40d289cadd101aeed55b16ae233 (patch)
treebe3185a3f35b2d00cceedb13cf42083671d9d41c /src/H5PL.c
parentf4e69ad57949288e845b22650db0968772269ff2 (diff)
downloadhdf5-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.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/H5PL.c b/src/H5PL.c
index 21bc0f2..738db90 100644
--- a/src/H5PL.c
+++ b/src/H5PL.c
@@ -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;