Code

stats plugin: Link with libm (-lm).
authorFlorian Forster <octo@collectd.org>
Thu, 18 Jun 2015 14:09:10 +0000 (16:09 +0200)
committerFlorian Forster <octo@collectd.org>
Thu, 18 Jun 2015 14:09:10 +0000 (16:09 +0200)
Fixes a bug reported by @Tenzer:

    symbol lookup error: /usr/lib/collectd/statsd.so: undefined symbol: log

src/Makefile.am

index c80f4bf7d09a55da65a259618733ac581e1414e6..62f98751f05e8efb7ffba40aece71e72732cddf0 100644 (file)
@@ -1095,7 +1095,7 @@ pkglib_LTLIBRARIES += statsd.la
 statsd_la_SOURCES = statsd.c \
                     utils_latency.h utils_latency.c
 statsd_la_LDFLAGS = -module -avoid-version
-statsd_la_LIBADD = -lpthread
+statsd_la_LIBADD = -lpthread -lm
 collectd_LDADD += "-dlopen" statsd.la
 collectd_DEPENDENCIES += statsd.la
 endif