summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2010-05-20 09:44:38 +0200
committerSimon Josefsson <simon@josefsson.org>2010-05-20 09:44:38 +0200
commit7f36c1c5b302f2257b8d323513a469402e84212c (patch)
tree9ea2619d0def7930eebda48f106dfddc910b2982 /m4
parent98f9d13a28d278409661d73639afe3cc205ba3d1 (diff)
downloadlibtasn1-7f36c1c5b302f2257b8d323513a469402e84212c.tar.gz
Update gnulib files, use valgrind-tests module.
Diffstat (limited to 'm4')
-rw-r--r--m4/valgrind.m434
1 files changed, 0 insertions, 34 deletions
diff --git a/m4/valgrind.m4 b/m4/valgrind.m4
deleted file mode 100644
index c460c34..0000000
--- a/m4/valgrind.m4
+++ /dev/null
@@ -1,34 +0,0 @@
-# valgrind.m4 serial 3
-dnl Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
-dnl This file is free software; the Free Software Foundation
-dnl gives unlimited permission to copy and/or distribute it,
-dnl with or without modifications, as long as this notice is preserved.
-
-dnl From Simon Josefsson
-
-# sj_VALGRIND()
-# -------------
-# Check if valgrind is available, and set VALGRIND to it if available.
-AC_DEFUN([sj_VALGRIND],
-[
- AC_ARG_ENABLE(valgrind-tests,
- AS_HELP_STRING([--enable-valgrind-tests],
- [run self tests under valgrind]),
- [opt_valgrind_tests=$enableval], [opt_valgrind_tests=yes])
-
- # Run self-tests under valgrind?
- if test "$opt_valgrind_tests" = "yes" && test "$cross_compiling" = no; then
- AC_CHECK_PROGS(VALGRIND, valgrind)
- fi
-
- if test -n "$VALGRIND" && $VALGRIND -q true > /dev/null 2>&1; then
- opt_valgrind_tests=yes
- VALGRIND="$VALGRIND -q"
- else
- opt_valgrind_tests=no
- VALGRIND=
- fi
-
- AC_MSG_CHECKING([whether self tests are run under valgrind])
- AC_MSG_RESULT($opt_valgrind_tests)
-])