[SCM] GNU Autoconf source repository branch, master, updated. v2.65-36-g64deec9

"Eric Blake" <[email protected]> Wed, 10 Feb 2010 13:48:57 +0000
Newsgroups gmane.comp.sysutils.autoconf.cvs
Message-ID <[email protected]>
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 Autoconf source repository".

http://git.sv.gnu.org/gitweb/?p=autoconf.git;a=commitdiff;h=64deec9dfbddd94b31beab9dd5894536e73bc884

The branch, master has been updated
       via  64deec9dfbddd94b31beab9dd5894536e73bc884 (commit)
      from  a2889ee464562b0b91c1bd6dd00d846ce4b022a0 (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 64deec9dfbddd94b31beab9dd5894536e73bc884
Author: Eric Blake <[email protected]>
Date:   Tue Feb 9 06:22:59 2010 -0700

    Avoid uninitialized use of $U.
    
    Automake sets up $U in AM_C_PROTOTYPES, but we can't assume that
    automake is always in use.
    
    * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Ensure $U is
    set if automake did not define it.
    * THANKS: Update.
    Reported by Heiko Schlichting, via Julien Élie.
    
    Signed-off-by: Eric Blake <[email protected]>

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

Summary of changes:
 ChangeLog               |    8 ++++++++
 THANKS                  |    2 ++
 lib/autoconf/general.m4 |    2 ++
 3 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 18aa169..a23101e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2010-02-10  Eric Blake  <[email protected]>
+
+	Avoid $U if it is not initialized.
+	* lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Ensure $U is
+	set if automake did not define it.
+	* THANKS: Update.
+	Reported by Heiko Schlichting, via Julien Élie.
+
 2010-01-24  Ralf Wildenhues  <[email protected]>
 
 	Fix substitution of carriage return on Darwin.
diff --git a/THANKS b/THANKS
index ddb1db4..8f90e90 100644
--- a/THANKS
+++ b/THANKS
@@ -155,6 +155,7 @@ Hans Aberg                  [email protected]
 Hans Olsson                 [email protected]
 Hans Ulrich Niedermann      [email protected]
 Harlan Stenn                [email protected]
+Heiko Schlichting           [email protected]
 Henk Krus                   [email protected]
 Howard Chu                  [email protected]
 Ian Lance Taylor            [email protected]
@@ -200,6 +201,7 @@ Juan Carlos Hurtado         [email protected]
 Jules Colding               [email protected]
 Julian Onions               [email protected]
 Julien Danjou               [email protected]
+Julien Élie                 [email protected]
 Julio Garvia                ?
 Justace Clutter             ?
 Jörn Rennecke               [email protected]
diff --git a/lib/autoconf/general.m4 b/lib/autoconf/general.m4
index 28fd972..15640c8 100644
--- a/lib/autoconf/general.m4
+++ b/lib/autoconf/general.m4
@@ -2919,6 +2919,8 @@ AC_DEFUN([AC_LIBOBJ],
 AC_DEFUN([_AC_LIBOBJS_NORMALIZE],
 [ac_libobjs=
 ac_ltlibobjs=
+m4_ifndef([AM_C_PROTOTYPES], [U=
+])dnl
 for ac_i in : $LIB@&t@OBJS; do test "x$ac_i" = x: && continue
   # 1. Remove the extension, and $U if already installed.
   ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'


hooks/post-receive
-- 
GNU Autoconf source repository