From 6b022675590a6fd791cefadfca6bec987b9645ff Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 29 May 2016 17:33:35 +0200 Subject: librdkafka: 0.9.1 --- librdkafka-upstream.patch | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 librdkafka-upstream.patch (limited to 'librdkafka-upstream.patch') diff --git a/librdkafka-upstream.patch b/librdkafka-upstream.patch deleted file mode 100644 index 062a9c3..0000000 --- a/librdkafka-upstream.patch +++ /dev/null @@ -1,29 +0,0 @@ -From ac916159a08ccb135a73891dc4e25b7be18223d2 Mon Sep 17 00:00:00 2001 -From: Magnus Edenhill -Date: Mon, 11 Jan 2016 10:22:29 +0100 -Subject: [PATCH] Snappy endian swapping for older glibc 2.9 (issue #505, #407) - ---- - src/snappy_compat.h | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -diff --git a/src/snappy_compat.h b/src/snappy_compat.h -index 5167a72..2c2375b 100644 ---- a/src/snappy_compat.h -+++ b/src/snappy_compat.h -@@ -136,10 +136,14 @@ typedef unsigned long long u64; - #define __LITTLE_ENDIAN__ 1 - #endif - --#if __LITTLE_ENDIAN__ == 1 && (defined(__LSB_VERSION__) || defined(__WIN32__)) -+#if __LITTLE_ENDIAN__ == 1 || defined(__WIN32__) -+#ifndef htole16 - #define htole16(x) (x) -+#endif -+#ifndef le32toh - #define le32toh(x) (x) - #endif -+#endif - - - #if defined(_MSC_VER) -- cgit