Merge pull request #1008 from remicollet/issue-librabbitmq-060
authorMarc Fournier <marc.fournier@camptocamp.com>
Wed, 22 Apr 2015 06:39:50 +0000 (08:39 +0200)
committerMarc Fournier <marc.fournier@camptocamp.com>
Wed, 22 Apr 2015 06:39:50 +0000 (08:39 +0200)
fix build with librabbitmq 0.6.0

Also backported to the collectd-5.3 branch as bd60e5 and 7fd46078d.

src/amqp.c

index cf2a448..97359cf 100644 (file)
@@ -304,6 +304,10 @@ static int camqp_create_exchange (camqp_config_t *conf) /* {{{ */
             /* type        = */ amqp_cstring_bytes (conf->exchange_type),
             /* passive     = */ 0,
             /* durable     = */ 0,
+#if defined(AMQP_VERSION) && AMQP_VERSION >= 0x00060000
+            /* auto delete = */ 0,
+            /* internal    = */ 0,
+#endif
             /* arguments   = */ argument_table);
     if ((ed_ret == NULL) && camqp_is_error (conf))
     {