check if AMQP_VERSION exists
authorRemi Collet <fedora@famillecollet.com>
Tue, 21 Apr 2015 15:40:43 +0000 (17:40 +0200)
committerMarc Fournier <marc.fournier@camptocamp.com>
Wed, 22 Apr 2015 06:37:32 +0000 (08:37 +0200)
src/amqp.c

index 39fbe74..24bc488 100644 (file)
@@ -299,7 +299,7 @@ static int camqp_create_exchange (camqp_config_t *conf) /* {{{ */
             /* type        = */ amqp_cstring_bytes (conf->exchange_type),
             /* passive     = */ 0,
             /* durable     = */ 0,
-#if AMQP_VERSION >= 0x00060000
+#if defined(AMQP_VERSION) && AMQP_VERSION >= 0x00060000
             /* auto delete = */ 0,
             /* internal    = */ 0,
 #endif