autoconf-commit
[Top][All Lists]
Advanced

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

[SCM] GNU Autoconf source repository branch, master, updated. v2.61a-314


From: Eric Blake
Subject: [SCM] GNU Autoconf source repository branch, master, updated. v2.61a-314-g73a757c
Date: Tue, 04 Dec 2007 17:36:54 +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 Autoconf source repository".

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

The branch, master has been updated
       via  73a757c58c9f367b871945342891cf05d2bc688c (commit)
       via  3832e8e30351f28106417c3ab990896ff9e17b48 (commit)
      from  b524b0f996c9c1e9a81a3e3cdcc11517c39adb7c (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 73a757c58c9f367b871945342891cf05d2bc688c
Author: Eric Blake <address@hidden>
Date:   Tue Dec 4 10:20:04 2007 -0700

    Manually resync with gnulib, since 'make cvs-update' no longer works.
    
    * build-aux/config.guess: New upstream version.
    * build-aux/config.sub: Likewise.
    
    Signed-off-by: Eric Blake <address@hidden>

commit 3832e8e30351f28106417c3ab990896ff9e17b48
Author: Eric Blake <address@hidden>
Date:   Tue Dec 4 10:14:35 2007 -0700

    When using older automake, don't downgrade build-aux/texinfo.tex.
    
    * configure.ac (AM_INIT_AUTOMAKE): Add no-texinfo.tex option.
    * doc/Makefile.am (TEXINFO_TEX): Add.
    
    Signed-off-by: Eric Blake <address@hidden>

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

Summary of changes:
 ChangeLog              |   10 ++++++++++
 build-aux/config.guess |    6 +++---
 build-aux/config.sub   |    8 ++++++--
 configure.ac           |    2 +-
 doc/Makefile.am        |    3 ++-
 5 files changed, 22 insertions(+), 7 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 6b880fc..757a19b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2007-12-04  Eric Blake  <address@hidden>
+
+       Manually resync with gnulib, since 'make cvs-update' no longer works.
+       * build-aux/config.guess: New upstream version.
+       * build-aux/config.sub: Likewise.
+
+       When using older automake, don't downgrade build-aux/texinfo.tex.
+       * configure.ac (AM_INIT_AUTOMAKE): Add no-texinfo.tex option.
+       * doc/Makefile.am (TEXINFO_TEX): Add.
+
 2007-11-27  Paul Eggert  <address@hidden>
 
        Fix AC_C_BIGENDIAN bug caused by new awk method of substitution.
diff --git a/build-aux/config.guess b/build-aux/config.guess
index 278f9e9..7fef1a3 100755
--- a/build-aux/config.guess
+++ b/build-aux/config.guess
@@ -4,7 +4,7 @@
 #   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
 #   Inc.
 
-timestamp='2007-07-22'
+timestamp='2007-11-19'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -954,8 +954,8 @@ EOF
     x86_64:Linux:*:*)
        echo x86_64-unknown-linux-gnu
        exit ;;
-    xtensa:Linux:*:*)
-       echo xtensa-unknown-linux-gnu
+    xtensa*:Linux:*:*)
+       echo ${UNAME_MACHINE}-unknown-linux-gnu
        exit ;;
     i*86:Linux:*:*)
        # The BFD linker knows what the default object file format is, so
diff --git a/build-aux/config.sub b/build-aux/config.sub
index 1761d8b..5190461 100755
--- a/build-aux/config.sub
+++ b/build-aux/config.sub
@@ -4,7 +4,7 @@
 #   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
 #   Inc.
 
-timestamp='2007-06-28'
+timestamp='2007-11-19'
 
 # This file is (in principle) common to ALL GNU software.
 # The presence of a machine in this file suggests that SOME GNU software
@@ -369,10 +369,14 @@ case $basic_machine in
        | v850-* | v850e-* | vax-* \
        | we32k-* \
        | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \
-       | xstormy16-* | xtensa-* \
+       | xstormy16-* | xtensa*-* \
        | ymp-* \
        | z8k-*)
                ;;
+       # Recognize the basic CPU types without company name, with glob match.
+       xtensa*)
+               basic_machine=$basic_machine-unknown
+               ;;
        # Recognize the various machine names and aliases which stand
        # for a CPU type and a company and sometimes even an OS.
        386bsd)
diff --git a/configure.ac b/configure.ac
index 9adafa1..cfd8643 100644
--- a/configure.ac
+++ b/configure.ac
@@ -27,7 +27,7 @@ AC_CONFIG_SRCDIR([ChangeLog])
 
 AC_CONFIG_AUX_DIR([build-aux])
 
-AM_INIT_AUTOMAKE([1.7.9 dist-bzip2 readme-alpha])
+AM_INIT_AUTOMAKE([1.7.9 dist-bzip2 readme-alpha no-texinfo.tex])
 
 # We use `/bin/sh -n script' to check that there are no syntax errors
 # in the scripts.  Although incredible, there are /bin/sh that go into
diff --git a/doc/Makefile.am b/doc/Makefile.am
index ed88e49..c404dfd 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -1,6 +1,6 @@
 # Make Autoconf documentation.
 
-# Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
+# Copyright (C) 2000, 2001, 2002, 2003, 2007 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
@@ -19,6 +19,7 @@ AM_MAKEINFOFLAGS = --no-split
 TEXI2DVI = texi2dvi --batch
 TEXI2HTML = texi2html
 TEXI2HTML_FLAGS = -split_chapter
+TEXINFO_TEX = ../build-aux/texinfo.tex
 
 info_TEXINFOS = autoconf.texi standards.texi
 autoconf_TEXINFOS = fdl.texi install.texi


hooks/post-receive
--
GNU Autoconf source repository




reply via email to

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