+2002-10-24 Andrew Suffield <asuffield@debian.org>
+
+ * libltdl/ltdl.c (lt_dlopenext): Corrected sense of "file not
+ found" check.
+
2002-10-24 Ossama Othman <ossama@doc.ece.uci.edu>
* ltmain.in: Support compiler names matching g++*
2002-10-23 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
- * Removed old Windows cruft.
- * Adapted pw32 to be like Cygwin/MinGW.
+ * libtool.m4: Removed old Windows cruft.
+ * libtool.m4: Adapted pw32 to be like Cygwin/MinGW.
2002-10-23 Robert Boehne <rboehne@gnu.org>
failed, it is better to return an error message here than to
report FILE_NOT_FOUND when the alternatives (foo.so etc) are not
in the module search path. */
- if (handle || ((errors > 0) && file_not_found ()))
+ if (handle || ((errors > 0) && !file_not_found ()))
{
LT_DLFREE (tmp);
return handle;
/* As before, if the file was found but loading failed, return now
with the current error message. */
- if (handle || ((errors > 0) && file_not_found ()))
+ if (handle || ((errors > 0) && !file_not_found ()))
{
LT_DLFREE (tmp);
return handle;