From 3410665d0bec58c7a6a43b4d8b69552beb26f3fd Mon Sep 17 00:00:00 2001 From: devzero2000 Date: Wed, 3 Jul 2013 16:24:39 +0000 Subject: /tmp/m4 --- CHANGES | 4 ++++ configure.ac | 4 +--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index bb322af..05e2ee2 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,8 @@ 1.17 -> 2.0: + - devzero2000: refine the --enable-valgrind autoconf check + we are now analyzing with valgrind only the test suite + and not the shell that invokes them, so drop the suppression. + Drop also the unused AM_CONDITIONAL macro USE_VALGRIND. - devzero2000: Don't use MALLOC_CHECK_ and valgrind(memcheck) at the same time The test suite can use valgrind(memcheck) via 'configure --enable-valgrind' diff --git a/configure.ac b/configure.ac index 3e0cf20..921e7ba 100755 --- a/configure.ac +++ b/configure.ac @@ -231,13 +231,11 @@ AS_IF([ test x"$use_valgrind" = x"true" ], VALGRIND_ENVIRONMENT="libtool --mode=execute " ] ) - VALGRIND_ENVIRONMENT="$VALGRIND_ENVIRONMENT valgrind -q --error-exitcode=3 --leak-check=yes --leak-check=full --log-file=\$(builddir)/popt-valgrind-result --suppressions=\$(srcdir)/popt-vg.supp " + VALGRIND_ENVIRONMENT="$VALGRIND_ENVIRONMENT valgrind -q --error-exitcode=3 --leak-check=yes --leak-check=full --log-file=\$(builddir)/popt-valgrind-result" AC_SUBST([VALGRIND_ENVIRONMENT]) ]) ]) -AM_CONDITIONAL([USE_VALGRIND], [test x$use_valgrind != no]) - # Checks for doxygen support. AC_PATH_PROG(DOXYGEN, doxygen, NO_DOXYGEN) AC_ARG_ENABLE(doxygen, -- cgit v1.2.1