From: Remi Collet Date: Tue, 21 Apr 2015 07:33:20 +0000 (+0200) Subject: fix build with librabbitmq 0.6.0 X-Git-Tag: collectd-5.5.0~36^2~1 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=534642e9d65763b67d73433ebcfaa90de88d76c6 fix build with librabbitmq 0.6.0 --- diff --git a/src/amqp.c b/src/amqp.c index cf2a448a..3ba8225c 100644 --- a/src/amqp.c +++ b/src/amqp.c @@ -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 AMQP_VERSION >= 0x00060000 + /* auto delete = */ 0, + /* internal = */ 0, +#endif /* arguments = */ argument_table); if ((ed_ret == NULL) && camqp_is_error (conf)) {