summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-12-06 07:59:42 +0000
committerUlrich Drepper <drepper@redhat.com>2001-12-06 07:59:42 +0000
commit1e06620a7b9c6c65284c52b4625eabd23b14c77c (patch)
tree6d1669a4982b2ce02d5cba2cb8c68452a281f829 /scripts
parentf5e6e2ee301eaf4ba89399a30418e777c0d0f9d7 (diff)
Update.
* string/tester.c: Add tests for strcasecmp and strncasecmp. * Versions.def (libc): Add GCC_3.0. __deregister_frame_info_bases, _Unwind_Find_FDE): Add for GCC_3.0.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/versions.awk5
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/versions.awk b/scripts/versions.awk
index 64ac2d981b..1c03fd3c59 100644
--- a/scripts/versions.awk
+++ b/scripts/versions.awk
@@ -61,7 +61,10 @@ BEGIN {
# current library. This is the only place where we print something to
# the intermediate file.
/^ / {
- printf("%s %s %s\n", actlib, actver, $0) | sort;
+ sortver=actver
+ # Ensure GLIBC_ versions come always first
+ sub(/^GLIBC_/," GLIBC_",sortver)
+ printf("%s %s %s\n", actlib, sortver, $0) | sort;
}