mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 20:58:52 +00:00
4893c73c5b
* Cleanup secure memory allocator for valgrind. * Bring valgrind headers in. * Add lots of suppressions for glib, gdbus, gcrypt * Fix up a bunch of bugs where things weren't getting freed * Add new 'make check-memory' target
19 lines
287 B
Makefile
19 lines
287 B
Makefile
|
|
VALGRIND_CONTRIB = \
|
|
valgrind.h \
|
|
memcheck.h
|
|
|
|
SUPPRESSIONS = \
|
|
gcrypt.supp \
|
|
glib.supp \
|
|
pthread.supp \
|
|
unknown.supp
|
|
|
|
valgrind-built.supp: $(SUPPRESSIONS)
|
|
$(AM_V_GEN) cat $(SUPPRESSIONS) > $@
|
|
|
|
EXTRA_DIST = \
|
|
$(VALGRIND_CONTRIB) \
|
|
$(SUPPRESSIONS)
|
|
|
|
all-local: valgrind-built.supp |