Recognize the Solaris dlopen equivalent of "cannot open".

oldstable
Francois Gouget 2001-10-14 16:06:54 +00:00 committed by Alexandre Julliard
parent 60cccba562
commit 2905e0fb36
1 changed files with 5 additions and 2 deletions

View File

@ -41,10 +41,13 @@ void *BUILTIN32_dlopen( const char *name )
if (!(handle = wine_dll_load( name, error, sizeof(error) )))
{
if (strstr(error, "cannot open")) /* cannot open -> WARN() */
if (strstr(error, "cannot open") || strstr(error, "open failed")) {
/* The file does not exist -> WARN() */
WARN("cannot open .so lib for builtin %s: %s\n", name, error);
else /* ERR() for all other errors (missing functions, ...) */
} else {
/* ERR() for all other errors (missing functions, ...) */
ERR("failed to load .so lib for builtin %s: %s\n", name, error );
}
}
return handle;
}