• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

The MinGW.org Windows System Libraries


Commit MetaInfo

修订版bd5f94818b747ebc066e7e367110b468c4884a07 (tree)
时间2012-10-31 04:34:15
作者Earnie Boyd <earnie@user...>
CommiterEarnie Boyd

Log Message

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

更改概述

差异

--- a/.gitignore
+++ b/.gitignore
@@ -1,11 +1,9 @@
1+build
12 Makefile
2-aclocal.m4
33 configure
4+autom4te.cache
5+config.status
46 .*.swp
5-*~
67 *.log
78 *.bak
8-autom4te.cache
9-missing
10-depcomp
11-install-sh
9+*~
--- /dev/null
+++ b/.hgignore
@@ -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+**~
--- /dev/null
+++ b/.hgsub
@@ -0,0 +1 @@
1+build-aux = ../build-aux
--- a/ChangeLog
+++ b/ChangeLog
@@ -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+
128 2012-10-30 Earnie Boyd <earnie@users.sourceforge.net>
229
330 https://sourceforge.net/tracker/?func=detail&aid=3567092&group_id=2435&atid=102435
--- a/Makefile.in
+++ b/Makefile.in
@@ -39,13 +39,14 @@ docdir=@docdir@
3939
4040 mkinstalldirs=@MKDIR_P@
4141
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@
4950
5051 INCLUDES=-I$(top_srcdir)/include -I$(srcdir)/include \
5152 -I$(top_srcdir)/src/libcrt/include -I$(top_srcdir)/misc/src/include \