../bin/cygFOO-version.dll for normal dlls. dlls for modules
remain with the .la file.
+ * libltdl/ltdl.c: Use windows paths while calling LoadLibrary.
+
2001-03-22 Laurynas Biveinis <lauras@softhome.net>
* ltcf-c.sh: Clear ac_cv_prog_cc_pic for DJGPP. Do not add
strcat (searchname, ".");
}
+#if __CYGWIN__
+ {
+ char wpath[MAX_PATH];
+ cygwin_conv_to_full_win32_path(searchname, wpath);
+ module = LoadLibrary(wpath);
+ }
+#else
module = LoadLibrary (searchname);
+#endif
LT_DLFREE (searchname);
/* libltdl expects this function to fail if it is unable