]> sourceware.org Git - glibc.git/commitdiff
* 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 44cd4de081fe4b08658dcbed14063f9acbf5a7bf..fc35ce60e4fc69e0140e8762b235d7e05ca05555 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 c71eda587a0de1d34e7b6f949b95e4dab90fe87b..e642b3d16ecc8500283ad8b42e956df560f6ae23 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;
   }
This page took 0.046548 seconds and 5 git commands to generate.