The MinGW.OSDN Installation Manager Tool
Revision | 8b5674a9d70722a6e47614dc33a19ea73046a15c (tree) |
---|---|
Zeit | 2013-01-07 23:11:04 |
Autor | Keith Marshall <keithmarshall@user...> |
Commiter | Keith Marshall |
Update copyright notification for development in new year.
@@ -1,3 +1,12 @@ | ||
1 | +2013-01-07 Keith Marshall <keithmarshall@users.sourceforge.net> | |
2 | + | |
3 | + Update copyright notification for development in new year. | |
4 | + | |
5 | + * configure.ac (YEARS_OF_ISSUE): Add year 2013. | |
6 | + | |
7 | + * Makefile.in (version.c, guidata.$OBJEXT): Make them depend on... | |
8 | + (Makefile): ...this, so YEARS_OF_ISSUE propagates to built objects. | |
9 | + | |
1 | 10 | 2012-12-24 Keith Marshall <keithmarshall@users.sourceforge.net> |
2 | 11 | |
3 | 12 | Work around a GUI action scheduling instability. |
@@ -6,7 +6,7 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ | ||
6 | 6 | PACKAGE_VERSION = @PACKAGE_VERSION@ |
7 | 7 | |
8 | 8 | # Written by Keith Marshall <keithmarshall@users.sourceforge.net> |
9 | -# Copyright (C) 2009, 2010, 2011, 2012, MinGW.org Project | |
9 | +# Copyright (C) 2009-2013, MinGW.org Project | |
10 | 10 | # |
11 | 11 | # |
12 | 12 | # Makefile template for mingw-get |
@@ -165,8 +165,8 @@ time-stamp: | ||
165 | 165 | %.c: %.c.in |
166 | 166 | $(VERSION_SCRIPT) $< > $@ |
167 | 167 | |
168 | -version.c: build.time | |
169 | -guidata.$(OBJEXT): build.time | |
168 | +version.c: Makefile build.time | |
169 | +guidata.$(OBJEXT): Makefile build.time | |
170 | 170 | |
171 | 171 | # Installation tools and directory paths... |
172 | 172 | # |
@@ -3,7 +3,7 @@ | ||
3 | 3 | # $Id$ |
4 | 4 | # |
5 | 5 | # Written by Keith Marshall <keithmarshall@users.sourceforge.net> |
6 | -# Copyright (C) 2009, 2010, 2011, 2012, MinGW.org Project | |
6 | +# Copyright (C) 2009-2013, MinGW.org Project | |
7 | 7 | # |
8 | 8 | # |
9 | 9 | # Configuration script for mingw-get |
@@ -25,7 +25,7 @@ | ||
25 | 25 | AC_INIT([mingw-get],[0.6],[http://mingw.org/Reporting_Bugs]) |
26 | 26 | |
27 | 27 | AC_SUBST([COPYRIGHT_HOLDER],["MinGW.org Project"]) |
28 | - AC_SUBST([YEARS_OF_ISSUE],["2009, 2010, 2011, 2012"]) | |
28 | + AC_SUBST([YEARS_OF_ISSUE],["2009-2013"]) | |
29 | 29 | |
30 | 30 | # Identify the formal release classes for each of the CLI and the GUI |
31 | 31 | # application sub-packages; these may be overriden at configure time, |