diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-12-06 07:59:42 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-12-06 07:59:42 +0000 |
commit | 1e06620a7b9c6c65284c52b4625eabd23b14c77c (patch) | |
tree | 6d1669a4982b2ce02d5cba2cb8c68452a281f829 /scripts/versions.awk | |
parent | f5e6e2ee301eaf4ba89399a30418e777c0d0f9d7 (diff) | |
download | glibc-1e06620a7b9c6c65284c52b4625eabd23b14c77c.tar.gz glibc-1e06620a7b9c6c65284c52b4625eabd23b14c77c.tar.xz glibc-1e06620a7b9c6c65284c52b4625eabd23b14c77c.zip |
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/versions.awk')
-rw-r--r-- | scripts/versions.awk | 5 |
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; } |