Code

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 a53231817fdc746dc5fa449085b53acf180052a0..92917d34b2799c233f784565c28078be094f72e6 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 1bf550e772c17815359d507f4fd774a40370dee9..2e0d38e18a3cbd8e76336b24f7005e15ce6cc0d5 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 \