* scripts/versions.awk: No errors for GLIBC_PRIVATE.
authorRoland McGrath <roland@gnu.org>
Wed, 23 Mar 2005 01:46:42 +0000 (01:46 +0000)
committerRoland McGrath <roland@gnu.org>
Wed, 23 Mar 2005 01:46:42 +0000 (01:46 +0000)
ChangeLog
scripts/versions.awk

index 44cd4de..fc35ce6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index c71eda5..e642b3d 100644 (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;
   }