From bd60e580f462ff3fc5d6faff4b0251e84f7f3728 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 21 Apr 2015 09:33:20 +0200 Subject: [PATCH] fix build with librabbitmq 0.6.0 --- src/amqp.c | 4 ++++ 1 file changed, 4 insertions(+) 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)) { -- 2.11.0