Skip to content

Commit

Permalink
* scripts/soversions.awk: Fix default version set handling.
Browse files Browse the repository at this point in the history
  • Loading branch information
Roland McGrath committed Feb 11, 2005
1 parent 561bcb8 commit 9b38280
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 9 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2005-02-11 Roland McGrath <roland@redhat.com>

* scripts/soversions.awk: Fix default version set handling.

2005-02-10 Roland McGrath <roland@redhat.com>

[BZ #157]
Expand Down
24 changes: 15 additions & 9 deletions scripts/soversions.awk
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,8 @@ $2 ~ /WORDSIZE[3264]/ {

# Obey the first matching DEFAULT line.
$2 == "DEFAULT" {
if (!matched_default[thiscf]) {
matched_default[thiscf] = 1;
$1 = $2 = "";
default_set[thiscf] = $0;
}
$1 = $2 = "";
default_set[++ndefault_set] = thiscf "\n" $0;
next
}

Expand All @@ -48,12 +45,21 @@ END {
split(elt, x);
cf = x[1];
lib = x[2];
if (default_setname && !(cf in default_set) && config ~ cf)
default_set[cf] = default_setname;
set = (elt in versions) ? versions[elt] : default_set[cf];
line = set ? (lib FS numbers[elt] FS set) : (lib FS numbers[elt]);
for (c in configs)
if (c ~ cf) {
if (elt in versions)
set = versions[elt];
else {
set = (c == config) ? default_setname : "";
for (i = 1; i <= ndefault_set; ++i) {
split(default_set[i], x, "\n");
if (c ~ x[1]) {
set = x[2];
break;
}
}
}
line = set ? (lib FS numbers[elt] FS set) : (lib FS numbers[elt]);
if (!((c FS lib) in lineorder) || order[elt] < lineorder[c FS lib]) {
lineorder[c FS lib] = order[elt];
lines[c FS lib] = configs[c] FS line;
Expand Down

0 comments on commit 9b38280

Please sign in to comment.