mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
* scripts/versions.awk: No errors for GLIBC_PRIVATE.
This commit is contained in:
parent
2fb9a65c22
commit
8ac78e6062
@ -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.
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user