avr-libc-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[avr-libc-commit] [2252] Add macro avr_libc_revision_suffix, to provide


From: Joerg Wunsch
Subject: [avr-libc-commit] [2252] Add macro avr_libc_revision_suffix, to provide a potential suffix that
Date: Thu, 22 Sep 2011 07:23:56 +0000

Revision: 2252
          http://svn.sv.gnu.org/viewvc/?view=rev&root=avr-libc&revision=2252
Author:   joerg_wunsch
Date:     2011-09-22 07:23:55 +0000 (Thu, 22 Sep 2011)
Log Message:
-----------
Add macro avr_libc_revision_suffix, to provide a potential suffix that
gets automatically included into the release filename (but not into
the numerical calculation of the release number macro).

Bump version to 1.7.2rc2252, in preparation of releasing avr-libc
1.7.2 anytime soon.  This is not necessarily going to be the final
release candidate, but should help anyone who wants to benefit from
bugfixes that have been applied recently (like the PSTR one that is
necessary for recent versions of GCC).

Modified Paths:
--------------
    trunk/avr-libc/ChangeLog
    trunk/avr-libc/NEWS
    trunk/avr-libc/configure.ac

Modified: trunk/avr-libc/ChangeLog
===================================================================
--- trunk/avr-libc/ChangeLog    2011-09-14 08:20:33 UTC (rev 2251)
+++ trunk/avr-libc/ChangeLog    2011-09-22 07:23:55 UTC (rev 2252)
@@ -1,3 +1,9 @@
+2011-09-22  Joerg Wunsch <address@hidden>
+
+       * configure.ac (avr_libc_revision, avr_libc_reldate): Bump in
+       preparation of an 1.7.2rc.
+       * configure.ac (avr_libc_revision_suffix): New macro.
+
 2011-09-14  Joerg Wunsch <address@hidden>
 
        bug #34047: missing math.h include in delay.h

Modified: trunk/avr-libc/NEWS
===================================================================
--- trunk/avr-libc/NEWS 2011-09-14 08:20:33 UTC (rev 2251)
+++ trunk/avr-libc/NEWS 2011-09-22 07:23:55 UTC (rev 2252)
@@ -1,4 +1,4 @@
-*** Changes since avr-libc-1.7.1:
+*** Changes in avr-libc-1.7.2:
 
 * Bugs fixed:
   

Modified: trunk/avr-libc/configure.ac
===================================================================
--- trunk/avr-libc/configure.ac 2011-09-14 08:20:33 UTC (rev 2251)
+++ trunk/avr-libc/configure.ac 2011-09-22 07:23:55 UTC (rev 2252)
@@ -40,12 +40,13 @@
 m4_define([avr_libc_major],    [1])dnl           major version
 m4_define([avr_libc_minor],    [7])dnl           minor version
 m4_define([avr_libc_revision], [2])dnl           revision (dot-dot version)
-m4_define([avr_libc_reldate],  [20110217])dnl    release date
+m4_define([avr_libc_revision_suffix], [rc2252])dnl  revision suffix (if any)
+m4_define([avr_libc_reldate],  [20110922])dnl    release date
 dnl end of library versioning data
 
 dnl odd minor number marks a development branch, append date to version there
 m4_define([avr_libc_version],
-          avr_libc_major.avr_libc_minor.avr_libc_revision)dnl
+          
avr_libc_major.avr_libc_minor.avr_libc_revision()avr_libc_revision_suffix)dnl
 m4_define([avr_libc_version_numeric],
           m4_eval(10000 * avr_libc_major + dnl
                     100 * avr_libc_minor + dnl




reply via email to

[Prev in Thread] Current Thread [Next in Thread]