んで、パッチ。

--- dlfcn_stubs.c.orig2003-10-11 17:56:56.484375000 +0900
+++ dlfcn_stubs.c2003-10-11 17:57:14.328125000 +0900
@@ -45,21 +45,18 @@
void *
dlopen(const char *libname, int how)
{
-printf("Wrong dl symbols!\n");
return NULL;
}

int
dlclose(void *handle)
{
-printf("Wrong dl symbols!\n");
return 0;
}

void *
dlsym(void *handle, const char *name)
{
-printf("Wrong dl symbols!\n");
return NULL;
}