Merge pull request #794 from vincentbernat/fix/kafka-warning
authorPierre-Yves Ritschard <pyr@spootnik.org>
Fri, 7 Nov 2014 15:27:08 +0000 (16:27 +0100)
committerPierre-Yves Ritschard <pyr@spootnik.org>
Fri, 7 Nov 2014 15:27:08 +0000 (16:27 +0100)
kafka: fix compilation for older versions of librdkafka

src/write_kafka.c

index 3e683c8..ba76d71 100644 (file)
@@ -61,7 +61,7 @@ static int kafka_write(const data_set_t *, const value_list_t *, user_data_t *);
 static int32_t kafka_partition(const rd_kafka_topic_t *, const void *, size_t,
                                int32_t, void *, void *);
 
-#ifdef HAVE_LIBRDKAFKA_LOGGER
+#if defined HAVE_LIBRDKAFKA_LOGGER || defined HAVE_LIBRDKAFKA_LOG_CB
 static void kafka_log(const rd_kafka_t *, int, const char *, const char *);
 
 static void kafka_log(const rd_kafka_t *rkt, int level,