2
1

0001-build-add-libavltree-libcommon-libheap-dependencies.patch 849 B

123456789101112131415161718192021
  1. build: add libavltree, libcommon & libheap dependencies
  2. Otherwise it can break on very parallel builds since collectd link time
  3. arrives before one or more of these were built.
  4. Status: requested github pull (patch slightly different for newer rev).
  5. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
  6. diff -Nura collectd-5.5.0.orig/src/daemon/Makefile.am collectd-5.5.0/src/daemon/Makefile.am
  7. --- collectd-5.5.0.orig/src/daemon/Makefile.am 2015-07-06 10:01:17.820506239 -0300
  8. +++ collectd-5.5.0/src/daemon/Makefile.am 2015-07-06 10:02:03.364054763 -0300
  9. @@ -49,7 +49,7 @@
  10. collectd_CFLAGS = $(AM_CFLAGS)
  11. collectd_LDFLAGS = -export-dynamic
  12. collectd_LDADD = libavltree.la libcommon.la libheap.la -lm
  13. -collectd_DEPENDENCIES =
  14. +collectd_DEPENDENCIES = libavltree.la libcommon.la libheap.la
  15. # Link to these libraries..
  16. if BUILD_WITH_LIBRT