summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordevzero2000 <devzero2000>2013-07-03 16:24:39 +0000
committerdevzero2000 <devzero2000>2013-07-03 16:24:39 +0000
commit3410665d0bec58c7a6a43b4d8b69552beb26f3fd (patch)
tree007e36b7a4ace0dac574b5ca61653ea49b14f5c7
parenta34a222589a60312b58086ba7374e7c96884a2ba (diff)
downloadlibpopt-3410665d0bec58c7a6a43b4d8b69552beb26f3fd.tar.gz
/tmp/m4
-rw-r--r--CHANGES4
-rwxr-xr-xconfigure.ac4
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,