From: Gustavo Zacarias Date: Mon, 6 Jul 2015 12:59:30 +0000 (-0300) Subject: build: add libavltree, libcommon & libheap dependencies X-Git-Tag: collectd-5.5.1~86 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=780e6a76021a240e95007a04b723d827120afa95 build: add libavltree, libcommon & libheap dependencies Otherwise it can break on very parallel builds since collectd link time arrives before one or more of these were built. Signed-off-by: Gustavo Zacarias --- diff --git a/src/daemon/Makefile.am b/src/daemon/Makefile.am index 00a8fd73..99dc1584 100644 --- a/src/daemon/Makefile.am +++ b/src/daemon/Makefile.am @@ -73,7 +73,7 @@ collectd_CPPFLAGS = $(AM_CPPFLAGS) $(LTDLINCL) collectd_CFLAGS = $(AM_CFLAGS) collectd_LDFLAGS = -export-dynamic collectd_LDADD = libavltree.la libcommon.la libheap.la -lm $(COMMON_LIBS) -collectd_DEPENDENCIES = +collectd_DEPENDENCIES = libavltree.la libcommon.la libheap.la # The daemon needs to call sg_init, so we need to link it against libstatgrab, # too. -octo