1--- src/man.c.orig	2006-06-02 12:52:27.000000000 -0700
2+++ src/man.c	2006-06-02 13:16:28.000000000 -0700
3@@ -407,6 +407,9 @@
4      if (strlen(name) + strlen(beg) + 1 >= BUFSIZ)
5 	  return 0;		/* very long names, ignore */
6 
7+     if (beg[0] == '/') {
8+	  strcpy(name, beg);
9+     } else
10      if (!index(beg, '/')) {
11 	  /* strange.. try same directory as the .so file */
12 	  strcat(name, "/");
13