From: Florian Forster Date: Sun, 24 Aug 2008 08:59:40 +0000 (+0200) Subject: Build system: Renamed the qmail plugin to filecount. X-Git-Tag: collectd-4.5.0~46 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=6071f9790b7d264ea48df0562b5d4255d55e7f49;p=collectd.git Build system: Renamed the qmail plugin to filecount. --- diff --git a/configure.in b/configure.in index 314ad1dc..aac5d653 100644 --- a/configure.in +++ b/configure.in @@ -2689,6 +2689,7 @@ AC_PLUGIN([dns], [$with_libpcap], [DNS traffic analysis]) AC_PLUGIN([email], [yes], [EMail statistics]) AC_PLUGIN([entropy], [$plugin_entropy], [Entropy statistics]) AC_PLUGIN([exec], [yes], [Execution of external programs]) +AC_PLUGIN([filecount], [yes], [Count files in directories]) AC_PLUGIN([hddtemp], [yes], [Query hddtempd]) AC_PLUGIN([interface], [$plugin_interface], [Interface traffic statistics]) AC_PLUGIN([iptables], [$with_libiptc], [IPTables rule counters]) @@ -2716,7 +2717,6 @@ AC_PLUGIN([ping], [$with_liboping], [Network latency statistics]) AC_PLUGIN([postgresql], [$with_libpq], [PostgreSQL database statistics]) AC_PLUGIN([powerdns], [yes], [PowerDNS statistics]) AC_PLUGIN([processes], [$plugin_processes], [Process statistics]) -AC_PLUGIN([qmail], [yes], [QMail queue statistics]) AC_PLUGIN([rrdtool], [$with_rrdtool], [RRDTool output plugin]) AC_PLUGIN([sensors], [$with_lm_sensors], [lm_sensors statistics]) AC_PLUGIN([serial], [$plugin_serial], [serial port traffic]) diff --git a/src/Makefile.am b/src/Makefile.am index acc53054..ec1712f1 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -255,6 +255,14 @@ collectd_LDADD += "-dlopen" exec.la collectd_DEPENDENCIES += exec.la endif +if BUILD_PLUGIN_FILECOUNT +pkglib_LTLIBRARIES += filecount.la +filecount_la_SOURCES = filecount.c +filecount_la_LDFLAGS = -module -avoid-version +collectd_LDADD += "-dlopen" filecount.la +collectd_DEPENDENCIES += filecount.la +endif + if BUILD_PLUGIN_HDDTEMP pkglib_LTLIBRARIES += hddtemp.la hddtemp_la_SOURCES = hddtemp.c @@ -579,14 +587,6 @@ processes_la_LIBADD += -lkvm endif endif -if BUILD_PLUGIN_QMAIL -pkglib_LTLIBRARIES += qmail.la -qmail_la_SOURCES = qmail.c -qmail_la_LDFLAGS = -module -avoid-version -collectd_LDADD += "-dlopen" qmail.la -collectd_DEPENDENCIES += qmail.la -endif - if BUILD_PLUGIN_RRDTOOL pkglib_LTLIBRARIES += rrdtool.la rrdtool_la_SOURCES = rrdtool.c