The MinGW.org Windows System Libraries
修订版 | bd5f94818b747ebc066e7e367110b468c4884a07 (tree) |
---|---|
时间 | 2012-10-31 04:34:15 |
作者 | Earnie Boyd <earnie@user...> |
Commiter | Earnie Boyd |
2012-10-30 Keith Marshall <keithmarshall@users.sourceforge.net>
Use C compiler selected by running configure script.
* Makefile.in (CC): Missing AC_SUBST definition; add it.
Adjust spacing within adjacent defines, for improved readability.
(DLLTOOL_FLAGS): Avoid unnecessary use of := operator.
2012-10-30 Keith Marshall <keithmarshall@users.sourceforge.net>
Rationalise .gitignore entries.
* .gitignore (build): Ignore local build directory.
(config.status): Ignore this; it is a build-time generated file.
(aclocal.m4): Do not ignore this; as a user maintained file, which
requires manual editing, (we do not use automake), it must be tracked.
(missing depcomp install-sh): Do not ignore; these should be tracked
as build-aux component files, within the scope of the appropriate
submodule; they do not appear as normal package component files.
2012-10-30 Keith Marshall <keithmarshall@users.sourceforge.net>
Add configuration files for Mercurial support.
* .hgsub: New file; it represents the equivalent of .gitmodules
* .hgignore: New file; it is the equivalent of .gitignore
@@ -1,11 +1,9 @@ | ||
1 | +build | |
1 | 2 | Makefile |
2 | -aclocal.m4 | |
3 | 3 | configure |
4 | +autom4te.cache | |
5 | +config.status | |
4 | 6 | .*.swp |
5 | -*~ | |
6 | 7 | *.log |
7 | 8 | *.bak |
8 | -autom4te.cache | |
9 | -missing | |
10 | -depcomp | |
11 | -install-sh | |
9 | +*~ |
@@ -0,0 +1,11 @@ | ||
1 | +syntax: glob | |
2 | +build/ | |
3 | +Makefile | |
4 | +configure | |
5 | +autom4te.cache/ | |
6 | +config.status | |
7 | +**.swp | |
8 | +**.log | |
9 | +**.bak | |
10 | +**.o | |
11 | +**~ |
@@ -0,0 +1 @@ | ||
1 | +build-aux = ../build-aux |
@@ -1,3 +1,30 @@ | ||
1 | +2012-10-30 Keith Marshall <keithmarshall@users.sourceforge.net> | |
2 | + | |
3 | + Use C compiler selected by running configure script. | |
4 | + | |
5 | + * Makefile.in (CC): Missing AC_SUBST definition; add it. | |
6 | + Adjust spacing within adjacent defines, for improved readability. | |
7 | + (DLLTOOL_FLAGS): Avoid unnecessary use of := operator. | |
8 | + | |
9 | +2012-10-30 Keith Marshall <keithmarshall@users.sourceforge.net> | |
10 | + | |
11 | + Rationalise .gitignore entries. | |
12 | + | |
13 | + * .gitignore (build): Ignore local build directory. | |
14 | + (config.status): Ignore this; it is a build-time generated file. | |
15 | + (aclocal.m4): Do not ignore this; as a user maintained file, which | |
16 | + requires manual editing, (we do not use automake), it must be tracked. | |
17 | + (missing depcomp install-sh): Do not ignore; these should be tracked | |
18 | + as build-aux component files, within the scope of the appropriate | |
19 | + submodule; they do not appear as normal package component files. | |
20 | + | |
21 | +2012-10-30 Keith Marshall <keithmarshall@users.sourceforge.net> | |
22 | + | |
23 | + Add configuration files for Mercurial support. | |
24 | + | |
25 | + * .hgsub: New file; it represents the equivalent of .gitmodules | |
26 | + * .hgignore: New file; it is the equivalent of .gitignore | |
27 | + | |
1 | 28 | 2012-10-30 Earnie Boyd <earnie@users.sourceforge.net> |
2 | 29 | |
3 | 30 | https://sourceforge.net/tracker/?func=detail&aid=3567092&group_id=2435&atid=102435 |
@@ -39,13 +39,14 @@ docdir=@docdir@ | ||
39 | 39 | |
40 | 40 | mkinstalldirs=@MKDIR_P@ |
41 | 41 | |
42 | -CFLAGS=@CFLAGS@ | |
43 | -RANLIB=@RANLIB@ | |
44 | -AS=@AS@ | |
45 | -DLLTOOL=@DLLTOOL@ | |
46 | -DLLTOOL_FLAGS := --as $(AS) -k --dllname | |
47 | -INSTALL=@INSTALL@ | |
48 | -MKDIR_P=@MKDIR_P@ | |
42 | +CC = @CC@ | |
43 | +CFLAGS = @CFLAGS@ | |
44 | +RANLIB = @RANLIB@ | |
45 | +AS = @AS@ | |
46 | +DLLTOOL = @DLLTOOL@ | |
47 | +DLLTOOL_FLAGS = --as $(AS) -k --dllname | |
48 | +INSTALL = @INSTALL@ | |
49 | +MKDIR_P = @MKDIR_P@ | |
49 | 50 | |
50 | 51 | INCLUDES=-I$(top_srcdir)/include -I$(srcdir)/include \ |
51 | 52 | -I$(top_srcdir)/src/libcrt/include -I$(top_srcdir)/misc/src/include \ |