* scripts/versions.awk: No errors for GLIBC_PRIVATE.

This commit is contained in:
Roland McGrath 2005-03-23 01:46:42 +00:00
parent 2fb9a65c22
commit 8ac78e6062
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2005-03-22 Roland McGrath <roland@redhat.com>
* scripts/versions.awk: No errors for GLIBC_PRIVATE.
* Versions.def (libdl, librt): Add GLIBC_2.3.4 version.
* scripts/versions.awk: Print all errors and die at the end.

View File

@ -53,7 +53,7 @@ BEGIN {
/^ [A-Za-z_]/ {
if (renamed[actlib "::" $1])
actver = renamed[actlib "::" $1];
else if (!versions[actlib "::" $1]) {
else if (!versions[actlib "::" $1] && $1 != "GLIBC_PRIVATE") {
printf("version %s not defined for %s\n", $1, actlib) > "/dev/stderr";
++lossage;
}