Include the valgrind headers in our tree

These headers are designed for including in the project. So the user doesn't
need to install valgrind-devel and we don't have to worry about whether the
headers are available or not.
This commit is contained in:
Peter Hutterer 2021-06-07 15:54:09 +10:00 committed by Wim Taymans
parent d08d989412
commit d9cc1a25f1
6 changed files with 6951 additions and 7 deletions

View file

@ -26,9 +26,7 @@
#include <alsa/asoundlib.h>
#include <math.h>
#ifdef HAVE_VALGRIND_MEMCHECK_H
#include <valgrind/memcheck.h>
#endif
#include "conf-parser.h"
#include "alsa-mixer.h"

View file

@ -18,6 +18,6 @@ acp_lib = static_library(
'acp',
acp_sources,
c_args : acp_c_args,
include_directories : [configinc, spa_inc ],
include_directories : [configinc, spa_inc, includes_inc ],
dependencies : [ alsa_dep, mathlib, ]
)