OSDN Git Service

2012-10-30 Keith Marshall <keithmarshall@users.sourceforge.net>
authorEarnie Boyd <earnie@users.sourceforge.net>
Tue, 30 Oct 2012 19:34:15 +0000 (15:34 -0400)
committerEarnie Boyd <earnie@users.sourceforge.net>
Tue, 30 Oct 2012 19:34:15 +0000 (15:34 -0400)
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

.gitignore
.hgignore [new file with mode: 0644]
.hgsub [new file with mode: 0644]
ChangeLog
Makefile.in

index 2876615..b2808a1 100644 (file)
@@ -1,11 +1,9 @@
+build
 Makefile
-aclocal.m4
 configure
+autom4te.cache
+config.status
 .*.swp
-*~
 *.log
 *.bak
-autom4te.cache
-missing
-depcomp
-install-sh
+*~
diff --git a/.hgignore b/.hgignore
new file mode 100644 (file)
index 0000000..6f8aa33
--- /dev/null
+++ b/.hgignore
@@ -0,0 +1,11 @@
+syntax: glob
+build/
+Makefile
+configure
+autom4te.cache/
+config.status
+**.swp
+**.log
+**.bak
+**.o
+**~
diff --git a/.hgsub b/.hgsub
new file mode 100644 (file)
index 0000000..92c6100
--- /dev/null
+++ b/.hgsub
@@ -0,0 +1 @@
+build-aux = ../build-aux
index 4129d24..62cbf44 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,30 @@
+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
+
 2012-10-30  Earnie Boyd  <earnie@users.sourceforge.net>
 
        https://sourceforge.net/tracker/?func=detail&aid=3567092&group_id=2435&atid=102435
index 47a8982..0ff3f9b 100644 (file)
@@ -39,13 +39,14 @@ docdir=@docdir@
 
 mkinstalldirs=@MKDIR_P@
 
-CFLAGS=@CFLAGS@
-RANLIB=@RANLIB@
-AS=@AS@
-DLLTOOL=@DLLTOOL@
-DLLTOOL_FLAGS := --as $(AS) -k --dllname
-INSTALL=@INSTALL@
-MKDIR_P=@MKDIR_P@
+CC = @CC@
+CFLAGS = @CFLAGS@
+RANLIB = @RANLIB@
+AS = @AS@
+DLLTOOL = @DLLTOOL@
+DLLTOOL_FLAGS = --as $(AS) -k --dllname
+INSTALL = @INSTALL@
+MKDIR_P = @MKDIR_P@
 
 INCLUDES=-I$(top_srcdir)/include -I$(srcdir)/include \
   -I$(top_srcdir)/src/libcrt/include -I$(top_srcdir)/misc/src/include \