The MinGW.org Windows System Libraries
Revisión | 0e96011ff8337867928363061febbc7f97b31bfc (tree) |
---|---|
Tiempo | 2015-06-08 20:47:07 |
Autor | Keith Marshall <keithmarshall@user...> |
Commiter | Keith Marshall |
Prepare and tag all files for release of mingwrt-3.21.1.
@@ -1,3 +1,11 @@ | ||
1 | +2015-06-08 Keith Marshall <keithmarshall@users.sourceforge.net> | |
2 | + | |
3 | + Prepare and tag all files for release of mingwrt-3.21.1. | |
4 | + | |
5 | + * configure.ac (AC_INIT): Adjust package version argument. | |
6 | + * include/_mingw.h (__MINGW32_PATCHLEVEL): Increment to 1, and... | |
7 | + (__MINGW32_VERSION): ...increment this to match. | |
8 | + | |
1 | 9 | 2015-05-18 Keith Marshall <keithmarshall@users.sourceforge.net> |
2 | 10 | |
3 | 11 | Refactor to avoid possible time_t conflicts across headers. |
@@ -6,7 +6,7 @@ | ||
6 | 6 | # $Id$ |
7 | 7 | # |
8 | 8 | # Written by Keith Marshall <keithmarshall@users.sourceforge.net> |
9 | -# Copyright (C) 2014, MinGW.org Project | |
9 | +# Copyright (C) 2014, 2015, MinGW.org Project | |
10 | 10 | # |
11 | 11 | # |
12 | 12 | # Permission is hereby granted, free of charge, to any person obtaining a |
@@ -29,7 +29,7 @@ | ||
29 | 29 | # DEALINGS IN THE SOFTWARE. |
30 | 30 | # |
31 | 31 | AC_PREREQ([2.64]) |
32 | - AC_INIT([MinGW Runtime],[3.21],[http://mingw.org/Reporting_Bugs],[mingwrt]) | |
32 | + AC_INIT([MinGW Runtime],[3.21.1],[http://mingw.org/Reporting_Bugs],[mingwrt]) | |
33 | 33 | |
34 | 34 | AC_PREFIX_DEFAULT([/mingw]) |
35 | 35 | AC_CONFIG_SRCDIR([include/_mingw.h]) |
@@ -31,10 +31,10 @@ | ||
31 | 31 | * |
32 | 32 | * __MINGW32_VERSION = 1,000,000 * major + 1,000 * minor + patch |
33 | 33 | */ |
34 | -#define __MINGW32_VERSION 3021000L | |
34 | +#define __MINGW32_VERSION 3021001L | |
35 | 35 | #define __MINGW32_MAJOR_VERSION 3 |
36 | 36 | #define __MINGW32_MINOR_VERSION 21 |
37 | -#define __MINGW32_PATCHLEVEL 0 | |
37 | +#define __MINGW32_PATCHLEVEL 1 | |
38 | 38 | |
39 | 39 | #if __GNUC__ >= 3 |
40 | 40 | #ifndef __PCC__ |