Writing autotools rules for pinba.
authorPhoenix Kayo <kayo.k11.4@gmail.com>
Thu, 8 Apr 2010 07:44:49 +0000 (13:44 +0600)
committerPhoenix Kayo <kayo.k11.4@gmail.com>
Thu, 8 Apr 2010 07:44:49 +0000 (13:44 +0600)
configure.in
src/Makefile.am

index a532318..92917d3 100644 (file)
@@ -3978,6 +3978,7 @@ plugin_vmem="no"
 plugin_vserver="no"
 plugin_wireless="no"
 plugin_zfs_arc="no"
+plugin_pinba="no"
 
 # Linux
 if test "x$ac_system" = "xLinux"
@@ -4537,6 +4538,8 @@ Configuration:
     libxml2 . . . . . . . $with_libxml2
     libxmms . . . . . . . $with_libxmms
     libyajl . . . . . . . $with_libyajl
+    libevent  . . . . . . $with_libevent
+    protobuf-c  . . . . . $with_protobuf_c
     oracle  . . . . . . . $with_oracle
     python  . . . . . . . $with_python
 
@@ -4610,6 +4613,7 @@ Configuration:
     oracle  . . . . . . . $enable_oracle
     perl  . . . . . . . . $enable_perl
     ping  . . . . . . . . $enable_ping
+    pinba . . . . . . . . $enable_pinba
     postgresql  . . . . . $enable_postgresql
     powerdns  . . . . . . $enable_powerdns
     processes . . . . . . $enable_processes
index 1bf550e..2e0d38e 100644 (file)
@@ -1184,6 +1184,14 @@ collectd_LDADD += "-dlopen" zfs_arc.la
 collectd_DEPENDENCIES += zfs_arc.la
 endif
 
+if BUILD_PLUGIN_PINBA
+pkglib_LTLIBRARIES += pinba.la
+pinba_la_SOURCES = pinba.c pinba-pb.c
+pinba_la_LDFLAGS = -module -avoid-version
+collectd_LDADD += "-dlopen" pinba.la
+collectd_DEPENDENCIES += pinba.la
+endif
+
 
 dist_man_MANS = collectd.1 \
                collectd.conf.5 \