mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
[BZ #6024]
* scripts/abi-versions.awk: If the version specified by --enable-oldest-abi is older than the first version for this architecture, use the default version.
This commit is contained in:
@ -1,5 +1,10 @@
|
|||||||
2008-04-08 Ulrich Drepper <drepper@redhat.com>
|
2008-04-08 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
[BZ #6024]
|
||||||
|
* scripts/abi-versions.awk: If the version specified by
|
||||||
|
--enable-oldest-abi is older than the first version for this
|
||||||
|
architecture, use the default version.
|
||||||
|
|
||||||
* locale/programs/ld-collate.c (collate_read): Ignore script lines
|
* locale/programs/ld-collate.c (collate_read): Ignore script lines
|
||||||
as well when ignoring the whole category.
|
as well when ignoring the whole category.
|
||||||
|
|
||||||
|
@ -30,6 +30,9 @@ $2 == "=" {
|
|||||||
|
|
||||||
printf "#define ABI_%s_%s\tABI_%s_%s\n", libid, oldid, libid, newid;
|
printf "#define ABI_%s_%s\tABI_%s_%s\n", libid, oldid, libid, newid;
|
||||||
printf "#define VERSION_%s_%s\t%s\n", libid, oldid, new;
|
printf "#define VERSION_%s_%s\t%s\n", libid, oldid, new;
|
||||||
|
|
||||||
|
if ("GLIBC_" oldest_abi == old)
|
||||||
|
oldest_abi = "default";
|
||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user