summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2005-03-22 23:52:59 +0000
committerRoland McGrath <roland@gnu.org>2005-03-22 23:52:59 +0000
commit2fb9a65c22e5d6d59ebadbdd7b0ead3bdd17abd6 (patch)
tree143157d4dafd0bf3a39c4db5d5d47155bb5bdf71 /scripts
parent0dad51c17277e5f0694ec5e1f20081fe223d39c9 (diff)
* Versions.def (libdl, librt): Add GLIBC_2.3.4 version.
* scripts/versions.awk: Print all errors and die at the end. Use library name in versions array keys.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/versions.awk22
1 files changed, 15 insertions, 7 deletions
diff --git a/scripts/versions.awk b/scripts/versions.awk
index 7e33387d41..c71eda587a 100644
--- a/scripts/versions.awk
+++ b/scripts/versions.awk
@@ -1,5 +1,5 @@
# Combine version map fragments into version scripts for our shared objects.
-# Copyright (C) 1998,99,2000,02 Free Software Foundation, Inc.
+# Copyright (C) 1998,99,2000,2002,2005 Free Software Foundation, Inc.
# Written by Ulrich Drepper <drepper@cygnus.com>, 1998.
# This script expects the following variables to be defined:
@@ -9,17 +9,19 @@
# Read definitions for the versions.
BEGIN {
+ lossage = 0;
+
nlibs=0;
while (getline < defsfile) {
if (/^[a-zA-Z0-9_.]+ \{/) {
libs[$1] = 1;
curlib = $1;
while (getline < defsfile && ! /^}/) {
- if ($2 == "=") {
+ if ($2 == "=") {
renamed[curlib "::" $1] = $3;
- }
+ }
else
- versions[$1] = 1;
+ versions[curlib "::" $1] = 1;
}
}
}
@@ -42,7 +44,7 @@ BEGIN {
actlib = $1;
if (!libs[$1]) {
printf("no versions defined for %s\n", $1) > "/dev/stderr";
- exit 1;
+ ++lossage;
}
next;
}
@@ -51,9 +53,9 @@ BEGIN {
/^ [A-Za-z_]/ {
if (renamed[actlib "::" $1])
actver = renamed[actlib "::" $1];
- else if (!versions[$1]) {
+ else if (!versions[actlib "::" $1]) {
printf("version %s not defined for %s\n", $1, actlib) > "/dev/stderr";
- exit 1;
+ ++lossage;
}
else
actver = $1;
@@ -93,6 +95,12 @@ function close_and_move(name, real_name) {
# Now print the accumulated information.
END {
close(sort);
+
+ if (lossage) {
+ system("rm -f " tmpfile);
+ exit 1;
+ }
+
oldlib = "";
oldver = "";
printf("version-maps =");