X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2FMakefile.am;h=71bc509a5d2dc442fe06b4b40a469d03cca694d4;hb=f50ba01fff8bbcf8785c65886db37fade5dee81f;hp=11c8ac685bede65c70ab24e47c1dfe8777638759;hpb=fa9fd186f4e09c24a02d9541c2409d21bf282087;p=collectd.git diff --git a/src/Makefile.am b/src/Makefile.am index 11c8ac68..71bc509a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -325,6 +325,15 @@ collectd_LDADD += "-dlopen" filecount.la collectd_DEPENDENCIES += filecount.la endif +if BUILD_PLUGIN_FREESWITCH +pkglib_LTLIBRARIES += freeswitch.la +freeswitch_la_SOURCES = freeswitch.c +freeswitch_la_LDFLAGS = -module -avoid-version +freeswitch_la_LIBADD = -lesl +collectd_LDADD += "-dlopen" freeswitch.la +collectd_DEPENDENCIES += freeswitch.la +endif + if BUILD_PLUGIN_GMOND pkglib_LTLIBRARIES += gmond.la gmond_la_SOURCES = gmond.c @@ -938,6 +947,19 @@ collectd_LDADD += "-dlopen" thermal.la collectd_DEPENDENCIES += thermal.la endif +if BUILD_PLUGIN_TOKYOTYRANT +pkglib_LTLIBRARIES += tokyotyrant.la +tokyotyrant_la_SOURCES = tokyotyrant.c +tokyotyrant_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS) +tokyotyrant_la_LDFLAGS = -module -avoid-version $(BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS) +tokyotyrant_la_LIBADD = $(BUILD_WITH_LIBTOKYOTYRANT_LIBS) +if BUILD_WITH_LIBSOCKET +tokyotyrant_la_LIBADD += -lsocket +endif +collectd_LDADD += "-dlopen" tokyotyrant.la +collectd_DEPENDENCIES += tokyotyrant.la +endif + if BUILD_PLUGIN_UNIXSOCK pkglib_LTLIBRARIES += unixsock.la unixsock_la_SOURCES = unixsock.c \