Lines 113-125
Link Here
|
113 |
case EPKG_END: /* A system library */ |
113 |
case EPKG_END: /* A system library */ |
114 |
return (EPKG_OK); |
114 |
return (EPKG_OK); |
115 |
default: |
115 |
default: |
116 |
/* Report link resolution errors in shared library. */ |
116 |
/* Ignore link resolution errors if we're analysing a |
117 |
if (is_shlib) { |
117 |
shared library. */ |
118 |
pkg_get(pkg, PKG_NAME, &pkgname, PKG_VERSION, &pkgversion); |
118 |
if (is_shlib) |
119 |
warnx("(%s-%s) %s - shared library %s not found", |
|
|
120 |
pkgname, pkgversion, fpath, name); |
121 |
return (EPKG_OK); |
119 |
return (EPKG_OK); |
122 |
} |
|
|
123 |
|
120 |
|
124 |
while (pkg_files(pkg, &file) == EPKG_OK) { |
121 |
while (pkg_files(pkg, &file) == EPKG_OK) { |
125 |
filepath = pkg_file_path(file); |
122 |
filepath = pkg_file_path(file); |