This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch, release/2.15/master, updated. glibc-2.15-24-g60ff996


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, release/2.15/master has been updated
       via  60ff996420f90ef51f25a2afcfe77f2bd8c224b2 (commit)
      from  6bee67b6cb041b3e9c245729b64e1f8c0b2ccd11 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=60ff996420f90ef51f25a2afcfe77f2bd8c224b2

commit 60ff996420f90ef51f25a2afcfe77f2bd8c224b2
Author: Chris Metcalf <cmetcalf@tilera.com>
Date:   Sat Jan 28 12:02:44 2012 -0500

    Fix bug in firstversions.awk version range handling.
    
    (cherry picked from commit e034841eac8e96fa255c52864be06352ee7981ae)

diff --git a/ChangeLog b/ChangeLog
index 8828095..267266b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -131,6 +131,10 @@
 	* sysdeps/i386/fpu/feupdateenv.c (__feupdateenv) Invoke __feraiseexcept
 	instead of feraiseexcept.
 
+2012-01-28  Chris Metcalf  <cmetcalf@tilera.com>
+
+	* scripts/firstversions.awk: Fix bug in version range handling.
+
 2012-01-26  Ulrich Drepper  <drepper@gmail.com>
 
 	[BZ #13583]
diff --git a/NEWS b/NEWS
index a6dc6a9..7a84d2c 100644
--- a/NEWS
+++ b/NEWS
@@ -10,7 +10,7 @@ Version 2.15.1
 * The following bugs are resolved with this release:
 
   411, 2547, 2548, 11365, 11494, 13583, 13731, 13732, 13733, 13747, 13748,
-  13749, 13753, 13774, 14059
+  13749, 13753, 13771, 13774, 14059
 
 Version 2.15
 
diff --git a/scripts/firstversions.awk b/scripts/firstversions.awk
index 4a20fc0..ccde4b5 100644
--- a/scripts/firstversions.awk
+++ b/scripts/firstversions.awk
@@ -54,9 +54,13 @@ $1 == "}" {
     while (vers_compare($1, v) >= 0) {
       delete firstversion[thislib, idx[thislib]];
       idx[thislib]++;
-      if ((thislib, idx[thislib]) in firstversion)
+      if ((thislib, idx[thislib]) in firstversion) {
+        # If we're skipping a referenced version to jump ahead to a
+        # later version, synthesize the earlier referenced version now.
+        if (v != $1 && (thislib, v) in usedversion)
+          print "  " v;
         v = firstversion[thislib, idx[thislib]];
-      else
+      } else
         break;
     }
     if ($1 == v || $1 == f)

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                 |    4 ++++
 NEWS                      |    2 +-
 scripts/firstversions.awk |    8 ++++++--
 3 files changed, 11 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]