mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
instrument for valgrind
This commit is contained in:
12
configure.in
12
configure.in
@@ -216,9 +216,15 @@ AC_ARG_ENABLE(exhaustive-tests,
|
||||
*) AC_MSG_ERROR(bad value ${enableval} for --enable-exhaustive-tests) ;;
|
||||
esac],[exhaustive_tests=false])
|
||||
AM_CONDITIONAL(FLaC__EXHAUSTIVE_TESTS, test x$exhaustive_tests = xtrue)
|
||||
if test x$exhaustive_tests = xtrue ; then
|
||||
AC_DEFINE(FLAC__EXHAUSTIVE_TESTS)
|
||||
fi
|
||||
|
||||
AC_ARG_ENABLE(valgrind-testing,
|
||||
[ --enable-valgrind-testing Run all tests inside Valgrind],
|
||||
[case "${enableval}" in
|
||||
yes) valgrind_testing=true ;;
|
||||
no) valgrind_testing=false ;;
|
||||
*) AC_MSG_ERROR(bad value ${enableval} for --enable-valgrind-testing) ;;
|
||||
esac],[valgrind_testing=false])
|
||||
AM_CONDITIONAL(FLaC__VALGRIND_TESTING, test x$valgrind_testing = xtrue)
|
||||
|
||||
dnl check for ogg library
|
||||
XIPH_PATH_OGG(have_ogg=yes, AC_MSG_WARN([*** Ogg development enviroment not installed - Ogg support will not be built]))
|
||||
|
||||
Reference in New Issue
Block a user