OSDN Git Service

Rob McMullen writes:
authorEric Andersen <andersen@codepoet.org>
Wed, 3 Dec 2003 20:12:45 +0000 (20:12 -0000)
committerEric Andersen <andersen@codepoet.org>
Wed, 3 Dec 2003 20:12:45 +0000 (20:12 -0000)
There is code in ldconfig that checks to see if a shared library is named
either ``lib*'' or ``ld-*'' before ldconfig -l will work on it. gawk uses this
feature of ldconfig to make /lib/rcscripts/filefuncs.so, so the build fails.

utils/ldconfig.c

index 806604e..cf7c001 100644 (file)
@@ -188,9 +188,8 @@ char *is_shlib(const char *dir, const char *name, int *type,
     struct stat statbuf;
     char buff[4096];
 
-    /* see if name is of the form libZ.so* */
-    if ((strncmp(name, "lib", 3) == 0 || strncmp(name, "ld-", 3) == 0) && \
-           name[strlen(name)-1] != '~' && (cp = strstr(name, ".so")))
+    /* see if name is of the form *.so* */
+    if (name[strlen(name)-1] != '~' && (cp = strstr(name, ".so")))
     {
        /* find the start of the Vminor part, if any */
        if (cp[3] == '.' && (cp2 = strchr(cp + 4, '.')))