automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Automake branch, branch-1-10, updated. Release-1-10-82-g4bc840


From: Ralf Wildenhues
Subject: [SCM] GNU Automake branch, branch-1-10, updated. Release-1-10-82-g4bc840f
Date: Mon, 21 Jan 2008 23:17:34 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Automake".

http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=4bc840fbdbbe6b457db3ec391873020d5b3c73dc

The branch, branch-1-10 has been updated
       via  4bc840fbdbbe6b457db3ec391873020d5b3c73dc (commit)
      from  fd94284af9960155e0b44a0db6a3f720d0bf4036 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 4bc840fbdbbe6b457db3ec391873020d5b3c73dc
Author: Ralf Wildenhues <address@hidden>
Date:   Sat Jan 19 17:35:20 2008 +0100

    Version 1.10.1.
    
    * configure.ac, NEWS: Bump version to 1.10.1.  Update.
    * doc/automake.texi (Releases): Update for 1.10.1.
    * Makefile.am (git-diff): Adjust for git syntax.

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                      |    6 ++++++
 Makefile.am                    |    2 +-
 Makefile.in                    |    4 ++--
 NEWS                           |   14 ++++++++++++--
 aclocal.m4                     |    2 +-
 configure                      |   20 ++++++++++----------
 configure.ac                   |    4 ++--
 doc/Makefile.in                |    2 +-
 doc/automake.texi              |    1 +
 lib/Automake/Makefile.in       |    2 +-
 lib/Automake/tests/Makefile.in |    2 +-
 lib/Makefile.in                |    2 +-
 lib/am/Makefile.in             |    2 +-
 m4/Makefile.in                 |    2 +-
 m4/amversion.m4                |    4 ++--
 tests/Makefile.in              |    2 +-
 16 files changed, 44 insertions(+), 27 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 28314ac..2aab7e6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2008-01-21  Ralf Wildenhues  <address@hidden>
 
+       * configure.ac, NEWS: Bump version to 1.10.1.  Update.
+       * doc/automake.texi (Releases): Update for 1.10.1.
+       * Makefile.am (git-diff): Adjust for git syntax.
+
+2008-01-21  Ralf Wildenhues  <address@hidden>
+
        * COPYING: Revert license to GPLv2+.  All uses changed.
 
        * lib/config-ml.in: Sync from upstream.
diff --git a/Makefile.am b/Makefile.am
index 728cd64..47c21f2 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -345,7 +345,7 @@ git-diff:
          prevno=`echo "$(VERSION)" - 0.01 | bc | sed 's/^\./0./'`; \
        else prevno="$$OLDVERSION"; fi; \
        prevver=Release-`echo $$prevno | sed 's/\./-/g'`; \
-       git diff $$prevver $$thisver $(PACKAGE) \
+       git diff $$prevver..$$thisver $(PACKAGE) \
            > $(PACKAGE)-$$prevno-$(VERSION).diff
 
 ## Check our path lengths.
diff --git a/Makefile.in b/Makefile.in
index d82bd67..e59cb16 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
-# Makefile.in generated by automake 1.10.0a from Makefile.am.
+# Makefile.in generated by automake 1.10.1 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
@@ -887,7 +887,7 @@ git-diff:
          prevno=`echo "$(VERSION)" - 0.01 | bc | sed 's/^\./0./'`; \
        else prevno="$$OLDVERSION"; fi; \
        prevver=Release-`echo $$prevno | sed 's/\./-/g'`; \
-       git diff $$prevver $$thisver $(PACKAGE) \
+       git diff $$prevver..$$thisver $(PACKAGE) \
            > $(PACKAGE)-$$prevno-$(VERSION).diff
 
 path-check: distdir
diff --git a/NEWS b/NEWS
index c8ec44a..08d564f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-New in 1.10.0a:
+New in 1.10.1:
 
   - Automake development is done in a git repository on Savannah now, see
 
@@ -21,12 +21,22 @@ New in 1.10.0a:
 
   - Files with extension .sx are also treated as preprocessed assembler.
 
-Bugs fixed in 1.10.0a:
+  - install-sh now has an BSD-like option `-C' to preserve modification
+    times of unchanged files upon installation.
+
+Bugs fixed in 1.10.1:
 
 * Long standing bugs:
 
   - Fix aix dependency tracking for libtool objects.
 
+  - The signal handling of aclocal has been improved.
+
+  - Targets beginning with a digit are now recognized correctly.
+
+  - All directories `.libs'/`_libs' used by libtool are cleaned now,
+    not only those in which libraries are built.
+
 * Bugs introduced by 1.10:
 
   - Fix output of dummy dependency files in presence of post-processed
diff --git a/aclocal.m4 b/aclocal.m4
index 25dc5ef..159f208 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -1,4 +1,4 @@
-# generated automatically by aclocal 1.10.0a -*- Autoconf -*-
+# generated automatically by aclocal 1.10.1 -*- Autoconf -*-
 
 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
 # 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
diff --git a/configure b/configure
index 6637030..986e6d7 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.61 for GNU Automake 1.10.0a.
+# Generated by GNU Autoconf 2.61 for GNU Automake 1.10.1.
 #
 # Report bugs to <address@hidden>.
 #
@@ -574,8 +574,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
 # Identity of this package.
 PACKAGE_NAME='GNU Automake'
 PACKAGE_TARNAME='automake'
-PACKAGE_VERSION='1.10.0a'
-PACKAGE_STRING='GNU Automake 1.10.0a'
+PACKAGE_VERSION='1.10.1'
+PACKAGE_STRING='GNU Automake 1.10.1'
 PACKAGE_BUGREPORT='address@hidden'
 
 ac_unique_file="automake.in"
@@ -1160,7 +1160,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures GNU Automake 1.10.0a to adapt to many kinds of systems.
+\`configure' configures GNU Automake 1.10.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1229,7 +1229,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of GNU Automake 1.10.0a:";;
+     short | recursive ) echo "Configuration of GNU Automake 1.10.1:";;
    esac
   cat <<\_ACEOF
 
@@ -1294,7 +1294,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-GNU Automake configure 1.10.0a
+GNU Automake configure 1.10.1
 generated by GNU Autoconf 2.61
 
 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -1308,7 +1308,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by GNU Automake $as_me 1.10.0a, which was
+It was created by GNU Automake $as_me 1.10.1, which was
 generated by GNU Autoconf 2.61.  Invocation command line was
 
   $ $0 $@
@@ -2054,7 +2054,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='automake'
- VERSION='1.10.0a'
+ VERSION='1.10.1'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -3119,7 +3119,7 @@ exec 6>&1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by GNU Automake $as_me 1.10.0a, which was
+This file was extended by GNU Automake $as_me 1.10.1, which was
 generated by GNU Autoconf 2.61.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -3162,7 +3162,7 @@ Report bugs to <address@hidden>."
 _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF
 ac_cs_version="\\
-GNU Automake config.status 1.10.0a
+GNU Automake config.status 1.10.1
 configured by $0, generated by GNU Autoconf 2.61,
   with options \\"`echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`\\"
 
diff --git a/configure.ac b/configure.ac
index 30fd1bb..0c9a72a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
 # Process this file with autoconf to produce a configure script.
 
 # Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2006,
-# 2004, 2006, 2007  Free Software Foundation, Inc.
+# 2004, 2006, 2007, 2008  Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -20,7 +20,7 @@
 
 dnl Require Autoconf 2.60 for AC_REQUIRE_AUX_FILE.
 AC_PREREQ(2.60)
-AC_INIT([GNU Automake], [1.10.0a], address@hidden)
+AC_INIT([GNU Automake], [1.10.1], address@hidden)
 
 AC_CONFIG_SRCDIR(automake.in)
 AC_CONFIG_AUX_DIR(lib)
diff --git a/doc/Makefile.in b/doc/Makefile.in
index e089b11..2c02957 100644
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -1,4 +1,4 @@
-# Makefile.in generated by automake 1.10.0a from Makefile.am.
+# Makefile.in generated by automake 1.10.1 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
diff --git a/doc/automake.texi b/doc/automake.texi
index 98601bc..61f73fd 100644
--- a/doc/automake.texi
+++ b/doc/automake.texi
@@ -11961,6 +11961,7 @@ The number of test cases in the test suite.
 @item 2005-02-13 @tab 1.9.5  @tab 7523 @tab 719 @tab 7859 @tab 3373 (40) @tab 
1453 (32) @tab 142 @tab 562
 @item 2005-07-10 @tab 1.9.6  @tab 7539 @tab 699 @tab 7867 @tab 3400 (40) @tab 
1453 (32) @tab 144 @tab 570
 @item 2006-10-15 @tab 1.10   @tab 7859 @tab 1072 @tab 8024 @tab 3512 (40) @tab 
1496 (34) @tab 172 @tab 604
address@hidden 2008-01-21 @tab 1.10.1 @tab 7870 @tab 1089 @tab 8025 @tab 3584 
(41) @tab 1499 (34) @tab 173 @tab 617
 @end multitable
 
 
diff --git a/lib/Automake/Makefile.in b/lib/Automake/Makefile.in
index 2b26bd6..7a1eb0c 100644
--- a/lib/Automake/Makefile.in
+++ b/lib/Automake/Makefile.in
@@ -1,4 +1,4 @@
-# Makefile.in generated by automake 1.10.0a from Makefile.am.
+# Makefile.in generated by automake 1.10.1 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
diff --git a/lib/Automake/tests/Makefile.in b/lib/Automake/tests/Makefile.in
index 661777e..d350d08 100644
--- a/lib/Automake/tests/Makefile.in
+++ b/lib/Automake/tests/Makefile.in
@@ -1,4 +1,4 @@
-# Makefile.in generated by automake 1.10.0a from Makefile.am.
+# Makefile.in generated by automake 1.10.1 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
diff --git a/lib/Makefile.in b/lib/Makefile.in
index 844c49e..74780e3 100644
--- a/lib/Makefile.in
+++ b/lib/Makefile.in
@@ -1,4 +1,4 @@
-# Makefile.in generated by automake 1.10.0a from Makefile.am.
+# Makefile.in generated by automake 1.10.1 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
diff --git a/lib/am/Makefile.in b/lib/am/Makefile.in
index d072f77..4aa6b2b 100644
--- a/lib/am/Makefile.in
+++ b/lib/am/Makefile.in
@@ -1,4 +1,4 @@
-# Makefile.in generated by automake 1.10.0a from Makefile.am.
+# Makefile.in generated by automake 1.10.1 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
diff --git a/m4/Makefile.in b/m4/Makefile.in
index e120ee2..5724bc3 100644
--- a/m4/Makefile.in
+++ b/m4/Makefile.in
@@ -1,4 +1,4 @@
-# Makefile.in generated by automake 1.10.0a from Makefile.am.
+# Makefile.in generated by automake 1.10.1 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
diff --git a/m4/amversion.m4 b/m4/amversion.m4
index 151d4cb..ea580ed 100644
--- a/m4/amversion.m4
+++ b/m4/amversion.m4
@@ -15,7 +15,7 @@ AC_DEFUN([AM_AUTOMAKE_VERSION],
 [am__api_version='1.10'
 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
 dnl require some minimum version.  Point them to the right macro.
-m4_if([$1], [1.10.0a], [],
+m4_if([$1], [1.10.1], [],
       [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
 ])
 
@@ -31,7 +31,7 @@ m4_define([_AM_AUTOCONF_VERSION], [])
 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
 # This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
-[AM_AUTOMAKE_VERSION([1.10.0a])dnl
+[AM_AUTOMAKE_VERSION([1.10.1])dnl
 m4_ifndef([AC_AUTOCONF_VERSION],
   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
 _AM_AUTOCONF_VERSION(AC_AUTOCONF_VERSION)])
diff --git a/tests/Makefile.in b/tests/Makefile.in
index e51c138..7fb2c46 100644
--- a/tests/Makefile.in
+++ b/tests/Makefile.in
@@ -1,4 +1,4 @@
-# Makefile.in generated by automake 1.10.0a from Makefile.am.
+# Makefile.in generated by automake 1.10.1 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,


hooks/post-receive
--
GNU Automake




reply via email to

[Prev in Thread] Current Thread [Next in Thread]