X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fdaemon%2FMakefile.am;h=52079438109ce282fbedcbbbc696e2c1cc9f5d89;hp=2fe42ae02c79e3201a5fb75f349cd5af08bf4ae3;hb=4c0848b1fb7cd097eeec947892d7bad5fd178ad7;hpb=7cdb614c3e1dcf585e70bb2b1c5a6604b96035dd diff --git a/src/daemon/Makefile.am b/src/daemon/Makefile.am index 2fe42ae0..52079438 100644 --- a/src/daemon/Makefile.am +++ b/src/daemon/Makefile.am @@ -10,7 +10,10 @@ AM_CPPFLAGS += -DPLUGINDIR='"${pkglibdir}"' AM_CPPFLAGS += -DPKGDATADIR='"${pkgdatadir}"' # Link to these libraries.. -COMMON_LIBS = +COMMON_LIBS = $(PTHREAD_LIBS) +if BUILD_WITH_CAPABILITY +COMMON_LIBS += -lcap +endif if BUILD_WITH_LIBRT COMMON_LIBS += -lrt endif @@ -23,9 +26,6 @@ endif if BUILD_WITH_LIBRESOLV COMMON_LIBS += -lresolv endif -if BUILD_WITH_LIBPTHREAD -COMMON_LIBS += -lpthread -endif if BUILD_WITH_LIBKSTAT COMMON_LIBS += -lkstat endif @@ -61,10 +61,7 @@ collectd_SOURCES = collectd.c collectd.h \ utils_ignorelist.c utils_ignorelist.h \ utils_llist.c utils_llist.h \ utils_random.c utils_random.h \ - utils_tail_match.c utils_tail_match.h \ - utils_match.c utils_match.h \ utils_subst.c utils_subst.h \ - utils_tail.c utils_tail.h \ utils_time.c utils_time.h \ types_list.c types_list.h \ utils_threshold.c utils_threshold.h @@ -90,6 +87,8 @@ else collectd_LDADD += -loconfig endif +LOG_COMPILER = env VALGRIND="@VALGRIND@" $(abs_top_srcdir)/testwrapper.sh + check_PROGRAMS = test_common test_meta_data test_utils_avltree test_utils_heap test_utils_time test_utils_subst TESTS = test_common test_meta_data test_utils_avltree test_utils_heap test_utils_time test_utils_subst