]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
2003-03-02 Roland McGrath <roland@redhat.com>
authorRoland McGrath <roland@gnu.org>
Mon, 3 Mar 2003 02:38:21 +0000 (02:38 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 3 Mar 2003 02:38:21 +0000 (02:38 +0000)
* scripts/abilist.awk: Don't distinguish weak symbols in normal output.

scripts/abilist.awk

index 346527ef0beac966327a91f08c8df232d773bcce..6e413f524b3f7b0507e5377e148823400d7cb2e9 100644 (file)
@@ -45,7 +45,9 @@ $2 == "g" || $2 == "w" && NF == 7 {
     next;
   }
 
-  desc = " " symbol " " (weak == "w" ? tolower(type) : type) size;
+  # Disabled -- weakness should not matter to shared library ABIs any more.
+  #if (weak == "w") type = tolower(type);
+  desc = " " symbol " " type size;
 
   if (version in versions) {
     versions[version] = versions[version] "\n" desc;