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~12^2~5^2~11 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=bd60e580f462ff3fc5d6faff4b0251e84f7f3728 fix build with librabbitmq 0.6.0 --- diff --git a/src/amqp.c b/src/amqp.c index 861cb5cb..39fbe744 100644 --- a/src/amqp.c +++ b/src/amqp.c @@ -299,6 +299,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)) {