automake-commit
[Top][All Lists]
Advanced

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

[Automake-commit] [SCM] GNU Automake branch, maint, updated. v1.11-565-g


From: Peter Rosin
Subject: [Automake-commit] [SCM] GNU Automake branch, maint, updated. v1.11-565-g7f713c3
Date: Tue, 20 Dec 2011 20:44:12 +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=7f713c38e4e1ad3c3cca73e6cd23d605ad7b886e

The branch, maint has been updated
       via  7f713c38e4e1ad3c3cca73e6cd23d605ad7b886e (commit)
      from  63da4921d542b2c329cf95f58c955b9972c5d161 (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 7f713c38e4e1ad3c3cca73e6cd23d605ad7b886e
Author: Peter Rosin <address@hidden>
Date:   Tue Dec 20 21:42:54 2011 +0100

    tests: fix spurious failure on systems lacking unistd.h
    
    This is for automake bug#10324.
    
    * tests/silent-lex-generic.test (foo.l): Add a dummy #define of
    YY_NO_UNISTD_H, so that the generated foo.c file won't require
    unistd.h to be present (it is not present when compiling with,
    e.g., MSVC 9).

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

Summary of changes:
 ChangeLog                     |    9 +++++++++
 tests/silent-lex-generic.test |    4 ++++
 2 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 9f9b3cc..49b6e8b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2011-12-20  Peter Rosin  <address@hidden>
+
+       tests: fix spurious failure on systems lacking unistd.h
+       This is for automake bug#10324.
+       * tests/silent-lex-generic.test (foo.l): Add a dummy #define of
+       YY_NO_UNISTD_H, so that the generated foo.c file won't require
+       unistd.h to be present (it is not present when compiling with,
+       e.g., MSVC 9).
+
 2011-12-16  Stefano Lattarini  <address@hidden>
 
        test defs: hack to support autoconf-wrapper programs
diff --git a/tests/silent-lex-generic.test b/tests/silent-lex-generic.test
index 2b2183e..f1b1ce2 100755
--- a/tests/silent-lex-generic.test
+++ b/tests/silent-lex-generic.test
@@ -53,6 +53,10 @@ LDADD = $(LEXLIB)
 EOF
 
 cat > foo.l <<'EOF'
+%{
+/* avoid non-ANSI #include of unistd.h */
+#define YY_NO_UNISTD_H 1
+%}
 %%
 "END"   return EOF;
 .


hooks/post-receive
-- 
GNU Automake



reply via email to

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