Merge branch 'collectd-5.2'
authorFlorian Forster <octo@collectd.org>
Sun, 3 Feb 2013 10:39:50 +0000 (11:39 +0100)
committerFlorian Forster <octo@collectd.org>
Sun, 3 Feb 2013 10:39:50 +0000 (11:39 +0100)
1  2 
configure.in
src/Makefile.am
src/postgresql.c
src/write_graphite.c

diff --cc configure.in
Simple merge
diff --cc src/Makefile.am
@@@ -1426,11 -1415,8 +1426,11 @@@ EXTRA_DIST +=   collectd.conf.pod 
        fi
  
  pinba.pb-c.c pinba.pb-c.h: pinba.proto
-       protoc-c --c_out . pinba.proto
+       protoc-c -I$(srcdir) --c_out . $(srcdir)/pinba.proto
  
 +riemann.pb-c.c riemann.pb-c.h: riemann.proto
 +      protoc-c --c_out . riemann.proto
 +
  install-exec-hook:
        $(mkinstalldirs) $(DESTDIR)$(sysconfdir)
        if test -e $(DESTDIR)$(sysconfdir)/collectd.conf; \
Simple merge
@@@ -438,20 -441,10 +445,21 @@@ static int wg_config_node (oconfig_item
      cb->prefix = NULL;
      cb->postfix = NULL;
      cb->escape_char = WG_DEFAULT_ESCAPE;
-     cb->store_rates = 1;
+     cb->format_flags = GRAPHITE_STORE_RATES;
  
 +    /* FIXME: Legacy configuration syntax. */
 +    if (strcasecmp ("Carbon", ci->key) != 0)
 +    {
 +        int status = cf_util_get_string (ci, &cb->name);
 +        if (status != 0)
 +        {
 +            wg_callback_free (cb);
 +            return (status);
 +        }
 +    }
 +
      pthread_mutex_init (&cb->send_lock, /* attr = */ NULL);
+     C_COMPLAIN_INIT (&cb->init_complaint);
  
      for (i = 0; i < ci->children_num; i++)
      {