m4-commit
[Top][All Lists]
Advanced

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

[SCM] GNU M4 source repository branch, branch-1.6, updated. v1.5.89a-161


From: Eric Blake
Subject: [SCM] GNU M4 source repository branch, branch-1.6, updated. v1.5.89a-161-g061a496
Date: Fri, 04 Jun 2010 23:12:32 +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 M4 source repository".

http://git.sv.gnu.org/gitweb/?p=m4.git;a=commitdiff;h=061a4963a1df30d7ae6958c9b42e2c2cd9b8e362

The branch, branch-1.6 has been updated
       via  061a4963a1df30d7ae6958c9b42e2c2cd9b8e362 (commit)
       via  c6a43ee609f5f37ac20f9da7a75e30b19693c017 (commit)
       via  eed874bd03e66d7f5b8a2fda2a3e402cb4cf2855 (commit)
      from  d7879f327c28e6a206aa93d009e27224cf6b4b16 (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 061a4963a1df30d7ae6958c9b42e2c2cd9b8e362
Author: Eric Blake <address@hidden>
Date:   Fri Jun 4 16:44:37 2010 -0600

    Reflect recent copyright assignment.
    
    * AUTHORS: Add David Warme.
    
    Signed-off-by: Eric Blake <address@hidden>
    (cherry picked from commit 88b1b5e5da563bfd66cd86f11bc35696e8abc287)

commit c6a43ee609f5f37ac20f9da7a75e30b19693c017
Author: Eric Blake <address@hidden>
Date:   Fri Jun 4 16:56:27 2010 -0600

    Update to newer gnulib.
    
    * gnulib: Update to latest, and include C++ tests.
    * configure.ac (gl_CXX_CHOICE_DEFAULT_NO): Make default for C++
    tests be disabled...
    * Makefile.am (DISTCHECK_CONFIGURE_FLAGS): ...but run them when
    building package.
    * m4/gnulib-cache.m4: Regenerate.
    
    Signed-off-by: Eric Blake <address@hidden>
    (cherry picked from commit 6fe27d4e717b758f43282c5857ab2c151abb2cd8)

commit eed874bd03e66d7f5b8a2fda2a3e402cb4cf2855
Author: Eric Blake <address@hidden>
Date:   Fri Jun 4 06:07:38 2010 -0600

    Fix build on newer glibc.
    
    POSIX allows, but does not require, that <fcntl.h> implicitly
    includes <sys/stat.h>.  Until recent glibc, most systems did
    this implicit inclusion, and m4 was mistakenly relying on it.
    
    * src/m4.h (includes): Add <sys/stat.h>.
    * THANKS: Update.
    Reported by Todd Rinaldo.
    
    Signed-off-by: Eric Blake <address@hidden>
    (cherry picked from commit 1359a849055a66eddffe7753485e0f29fb85ef31)

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

Summary of changes:
 AUTHORS            |    1 +
 ChangeLog          |   18 ++++++++++++++++++
 Makefile.am        |    2 +-
 THANKS             |    2 ++
 configure.ac       |    1 +
 gnulib             |    2 +-
 m4/gnulib-cache.m4 |    3 ++-
 src/m4.h           |    1 +
 8 files changed, 27 insertions(+), 3 deletions(-)

diff --git a/AUTHORS b/AUTHORS
index c0a0903..b382668 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -26,6 +26,7 @@ John Brzustowski            address@hidden          2006-03-06
 Ralf Wildenhues             address@hidden        2006-03-20
 Markus Duft                 address@hidden        2006-08-03
 Joel E. Denny               address@hidden            2009-08-18
+David Warme                 address@hidden   2010-03-10
 
 
 ========================================================================
diff --git a/ChangeLog b/ChangeLog
index 65ad900..242dd96 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,21 @@
+2010-06-04  Eric Blake  <address@hidden>
+
+       Reflect recent copyright assignment.
+       * AUTHORS: Add David Warme.
+
+       Update to newer gnulib.
+       * gnulib: Update to latest, and include C++ tests.
+       * configure.ac (gl_CXX_CHOICE_DEFAULT_NO): Make default for C++
+       tests be disabled...
+       * Makefile.am (DISTCHECK_CONFIGURE_FLAGS): ...but run them when
+       building package.
+       * m4/gnulib-cache.m4: Regenerate.
+
+       Fix build on newer glibc.
+       * src/m4.h (includes): Add <sys/stat.h>.
+       * THANKS: Update.
+       Reported by Todd Rinaldo.
+
 2010-03-02  Giuseppe Scrivano  <address@hidden>  (tiny change)
 
        Support bootstrap --gnulib-srcdir=DIR.
diff --git a/Makefile.am b/Makefile.am
index 425bcc8..e5f600f 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -40,7 +40,7 @@ ACLOCAL_AMFLAGS = -I m4
 ## Enough users install GNU M4 as gm4 that we make sure 'make installcheck'
 ## will handle that, prior to making a release.
 DISTCHECK_CONFIGURE_FLAGS = --enable-changeword --program-prefix=g \
-       --enable-gcc-warnings
+       --enable-gcc-warnings --enable-silent-rules --enable-cxx
 
 BUILT_SOURCES = $(top_srcdir)/.version
 $(top_srcdir)/.version:
diff --git a/THANKS b/THANKS
index 206d3a2..81b4c1a 100644
--- a/THANKS
+++ b/THANKS
@@ -44,6 +44,7 @@ Frank Schwidom          address@hidden
 Gary V. Vaughan         address@hidden
 Geoff Russell           address@hidden
 Giovanni Toffetti       address@hidden
+Giuseppe Scrivano       address@hidden
 Greg A. Woods           address@hidden
 Hal Peterson            address@hidden
 Hoang Uong              address@hidden
@@ -116,6 +117,7 @@ Steve Williamson        address@hidden
 Steven Augart           address@hidden
 Thomas Klausner         address@hidden
 Thorsten Ohl            address@hidden
+Todd Rinaldo            address@hidden
 Tom G. Christensen      address@hidden
 Tom McConnell           address@hidden
 Tom Quinn               address@hidden
diff --git a/configure.ac b/configure.ac
index 2dfebc8..a7dcd25 100644
--- a/configure.ac
+++ b/configure.ac
@@ -31,6 +31,7 @@ AC_CONFIG_SRCDIR([src/m4.h])
 AC_CONFIG_HEADERS([lib/config.h:lib/config.hin])
 
 AC_PROG_CC
+AC_DEFUN([gl_CXX_CHOICE_DEFAULT_NO])
 M4_EARLY
 
 AC_CHECK_HEADERS_ONCE([siginfo.h])
diff --git a/gnulib b/gnulib
index 80cd995..74d5093 160000
--- a/gnulib
+++ b/gnulib
@@ -1 +1 @@
-Subproject commit 80cd995cdcbf4b9ded895a43621a11f11806ad8d
+Subproject commit 74d509383fe30bb5511a978b52e4f8ecae37826b
diff --git a/m4/gnulib-cache.m4 b/m4/gnulib-cache.m4
index 5805acf..86c0dc9 100644
--- a/m4/gnulib-cache.m4
+++ b/m4/gnulib-cache.m4
@@ -15,7 +15,7 @@
 
 
 # Specification in the form of a command-line invocation:
-#   gnulib-tool --import --dir=. --local-dir=local --lib=libm4 
--source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests 
--aux-dir=build-aux --with-tests --makefile-name=gnulib.mk --no-libtool 
--macro-prefix=M4 announce-gen assert autobuild avltree-oset binary-io 
bitrotate clean-temp cloexec close-stream closein config-h dirname error 
execute fdl-1.3 fflush filenamecat flexmember fopen fopen-safer freadptr 
freadseek fseeko gendocs getopt-gnu git-version-gen gnu-web-doc-update 
gnumakefile gnupload gpl-3.0 hash ignore-value intprops maintainer-makefile 
manywarnings memchr2 memcmp2 memmem mkstemp obstack obstack-printf-posix pipe 
progname quote regex rename snprintf-posix stdbool stdint stdlib-safer strtod 
strtol unlocked-io update-copyright vasnprintf-posix verror version-etc 
version-etc-fsf wait-process xalloc xmemdup0 xoset xprintf xvasprintf-posix
+#   gnulib-tool --import --dir=. --local-dir=local --lib=libm4 
--source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests 
--aux-dir=build-aux --with-tests --with-c++-tests --makefile-name=gnulib.mk 
--no-libtool --macro-prefix=M4 announce-gen assert autobuild avltree-oset 
binary-io bitrotate clean-temp cloexec close-stream closein config-h dirname 
error execute fdl-1.3 fflush filenamecat flexmember fopen fopen-safer freadptr 
freadseek fseeko gendocs getopt-gnu git-version-gen gnu-web-doc-update 
gnumakefile gnupload gpl-3.0 hash ignore-value intprops maintainer-makefile 
manywarnings memchr2 memcmp2 memmem mkstemp obstack obstack-printf-posix pipe 
progname quote regex rename snprintf-posix stdbool stdint stdlib-safer strtod 
strtol unlocked-io update-copyright vasnprintf-posix verror version-etc 
version-etc-fsf wait-process xalloc xmemdup0 xoset xprintf xvasprintf-posix
 
 # Specification in the form of a few gnulib-tool.m4 macro invocations:
 gl_LOCAL_DIR([local])
@@ -85,6 +85,7 @@ gl_MODULES([
   xprintf
   xvasprintf-posix
 ])
+gl_WITH_CXX_TESTS
 gl_AVOID([])
 gl_SOURCE_BASE([lib])
 gl_M4_BASE([m4])
diff --git a/src/m4.h b/src/m4.h
index d48a140..d333c24 100644
--- a/src/m4.h
+++ b/src/m4.h
@@ -32,6 +32,7 @@
 #include <stdbool.h>
 #include <stdint.h>
 #include <string.h>
+#include <sys/stat.h>
 #include <sys/types.h>
 
 #include "binary-io.h"


hooks/post-receive
-- 
GNU M4 source repository



reply via email to

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