../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-16 Albert Chin <china@thewrittenword.com>
* libtool.m4 (save_CPPFLAGS): Fix typo.
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