Skip to content

Commit d1713f1

Browse files
authored
patch ssl build on macos (#502)
1 parent 3cd5eb7 commit d1713f1

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Rdkafka Changelog
22

3+
## 0.18.0 (Unreleased)
4+
- [Patch] Patch with "Add forward declaration to fix compilation without ssl" fix
5+
36
## 0.18.0 (2024-09-02)
47
- [Enhancement] Update `librdkafka` to `2.5.0`
58
- [Enhancement] Do not release GVL on `rd_kafka_name` (ferrous26)

dist/patches/rdkafka_op.h.patch

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# ref https://github.com/confluentinc/librdkafka/pull/4794/files
2+
--- librdkafka_2.5.0/src/rdkafka_op.h 2024-07-08 09:47:43.000000000 +0200
3+
+++ librdkafka_2.5.0/src/rdkafka_op.h 2024-07-30 09:44:38.529759640 +0200
4+
@@ -39,6 +39,7 @@
5+
typedef struct rd_kafka_q_s rd_kafka_q_t;
6+
typedef struct rd_kafka_toppar_s rd_kafka_toppar_t;
7+
typedef struct rd_kafka_op_s rd_kafka_op_t;
8+
+typedef struct rd_kafka_broker_s rd_kafka_broker_t;
9+
10+
/* One-off reply queue + reply version.
11+
* All APIs that take a rd_kafka_replyq_t makes a copy of the

lib/rdkafka/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
module Rdkafka
4-
VERSION = "0.18.0"
4+
VERSION = "0.18.1"
55
LIBRDKAFKA_VERSION = "2.5.0"
66
LIBRDKAFKA_SOURCE_SHA256 = "3dc62de731fd516dfb1032861d9a580d4d0b5b0856beb0f185d06df8e6c26259"
77
end

0 commit comments

Comments
 (0)