autoconf-archive-commits
[Top][All Lists]
Advanced

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

GNU Autoconf Archive branch master updated. v2015.09.25-50-g246e642


From: E-mail notifications for the Autoconf Archive git repository.
Subject: GNU Autoconf Archive branch master updated. v2015.09.25-50-g246e642
Date: Fri, 04 Mar 2016 21:06:08 +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 Archive".

The branch, master has been updated
       via  246e642078cc36227ea9be787a686a52b17c01ec (commit)
       via  65decbf02b4013b477cb6598971a5a204f46e483 (commit)
       via  dcc61cbe6cd1059e3f9bf6d2bea801263d03b57b (commit)
       via  5c66999b8310f85578224335246d814da1b020d4 (commit)
       via  7a6448a04c155c7104606bcfa7093e403d95b497 (commit)
       via  b017e9a0e4de3bfc3f7ec0cd594d0be1906a8c0b (commit)
       via  db54fa9c121e5f7d293fe95bdfac82930532e676 (commit)
       via  afa42d648cd3d659f560fd4b1e1f6a6f815a653d (commit)
       via  f39a7f7bddc8a732b792fa5826dfd2ea4437763d (commit)
       via  73c78939ca773ec07e1ee237c9b55c37b9174c3b (commit)
      from  cf3abf8aa612dc9750c00a4272bc3da46d54e57a (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 246e642078cc36227ea9be787a686a52b17c01ec
Merge: 65decbf db54fa9
Author: Peter Simons <address@hidden>
Date:   Fri Mar 4 22:04:04 2016 +0100

    Merge pull request #61 from olaf-mandel/ax_code_coverage
    
    AX_CODE_COVERAGE: quote CODE_COVERAGE_RULES

commit 65decbf02b4013b477cb6598971a5a204f46e483
Merge: dcc61cb b017e9a
Author: Peter Simons <address@hidden>
Date:   Fri Mar 4 22:03:33 2016 +0100

    Merge pull request #62 from olaf-mandel/ax_prog_doxygen
    
    AX_PROG_DOXYGEN: quote DX_RULES

commit dcc61cbe6cd1059e3f9bf6d2bea801263d03b57b
Merge: 5c66999 7a6448a
Author: Peter Simons <address@hidden>
Date:   Fri Mar 4 22:03:14 2016 +0100

    Merge pull request #60 from olaf-mandel/ax_gnu_autotest
    
    AX_GNU_AUTOTEST: quote some static strings

commit 5c66999b8310f85578224335246d814da1b020d4
Merge: cf3abf8 afa42d6
Author: Peter Simons <address@hidden>
Date:   Fri Mar 4 22:01:16 2016 +0100

    Merge pull request #63 from olaf-mandel/ax_valgrind_check
    
    3 patches for valgrind check

commit 7a6448a04c155c7104606bcfa7093e403d95b497
Author: Olaf Mandel <address@hidden>
Date:   Thu Mar 3 23:29:56 2016 +0100

    AX_GNU_AUTOTEST: quote some static strings
    
    Some static strings in AC_SUBST() were underquoted: fix that.

commit b017e9a0e4de3bfc3f7ec0cd594d0be1906a8c0b
Author: Olaf Mandel <address@hidden>
Date:   Thu Mar 3 23:24:28 2016 +0100

    AX_PROG_DOXYGEN: quote DX_RULES
    
    Quote the DX_RULES assignment to prevent some other M4 macro from
    modifying the text. Also transition from direct if-statements to AS_IF
    for the same reasons: to prevent undesired macro replacements.

commit db54fa9c121e5f7d293fe95bdfac82930532e676
Author: Olaf Mandel <address@hidden>
Date:   Thu Mar 3 23:21:52 2016 +0100

    AX_CODE_COVERAGE: quote CODE_COVERAGE_RULES
    
    Quote the CODE_COVERAGE_RULES assignment to prevent some other
    M4 macro from modifying the static text.

commit afa42d648cd3d659f560fd4b1e1f6a6f815a653d
Author: Olaf Mandel <address@hidden>
Date:   Thu Mar 3 23:20:01 2016 +0100

    AX_VALGRIND_CHECK: quote VALGRIND_CHECK_RULES
    
    Quote the VALGRIND_CHECK_RULES assignment to prevent some other
    M4 macro from modifying the static text.

commit f39a7f7bddc8a732b792fa5826dfd2ea4437763d
Author: Olaf Mandel <address@hidden>
Date:   Thu Mar 3 21:19:16 2016 +0100

    AX_VALGRIND_CHECK: fix logic around AC_CHECK_PROG
    
    There are two problems in the logic around the first AC_CHECK_PROG()
    call:
    
    1. If AC_CHECK_PROG() fails to find valgrind, with neither configure
       option --enable-valgrind nor --disable-valgrind, then the
       enable_valgrind variable ends up being set incorrectly to yes.
    
    2. If configure was started with --disable-valgrind, then there is no need
       to run AC_CHECK_PROG() at all.

commit 73c78939ca773ec07e1ee237c9b55c37b9174c3b
Author: Olaf Mandel <address@hidden>
Date:   Thu Mar 3 21:00:01 2016 +0100

    AX_VALGRIND_CHECK: clean up configure message
    
    When running configure, the displayed text contained two interleaved
    messages. Got:
    
    checking whether to enable Valgrind on the unit tests... checking for 
valgrind... valgrind
    yes
    
    instead of the probably intended:
    
    checking whether to enable Valgrind on the unit tests... yes
    checking for valgrind... valgrind
    
    In addition, the first message seems to convey no additional information
    compared to the second message: if valgrind is not found (and there is no
    --enable-valgrind error), then the result of the check is "no" as
    displayed for the executable check. And in all other cases, the result is
    "yes". So remove the first message completely: this takes care of the
    mangled status messages.

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

Summary of changes:
 m4/ax_code_coverage.m4  |    6 +-
 m4/ax_gnu_autotest.m4   |   26 ++++----
 m4/ax_prog_doxygen.m4   |  154 ++++++++++++++++++++---------------------------
 m4/ax_valgrind_check.m4 |   26 +++++----
 4 files changed, 97 insertions(+), 115 deletions(-)


hooks/post-receive
-- 
GNU Autoconf Archive



reply via email to

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