Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions recipes/librdkafka/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
sources:
"2.11.1":
url: "https://github.com/edenhill/librdkafka/archive/v2.11.1.tar.gz"
sha256: "a2c87186b081e2705bb7d5338d5a01bc88d43273619b372ccb7bb0d264d0ca9f"
"2.8.0":
url: "https://github.com/edenhill/librdkafka/archive/v2.8.0.tar.gz"
sha256: "5bd1c46f63265f31c6bfcedcde78703f77d28238eadf23821c2b43fc30be3e25"
Expand Down Expand Up @@ -30,6 +33,17 @@ sources:
url: "https://github.com/edenhill/librdkafka/archive/v1.9.2.tar.gz"
sha256: "3fba157a9f80a0889c982acdd44608be8a46142270a389008b22d921be1198ad"
patches:
"2.11.1":
- patch_file: patches/0001-Change-library-names-1-9-1.patch
patch_description: "find_package conan packages"
patch_type: "conan"
- patch_file: patches/0002-Change-library-targets-and-result-variables-2-5-0.patch
patch_description: "refer conan package names"
patch_type: "conan"
- patch_file: patches/0004-Fix_compilation_with_CMake_and_without_CURL.patch
patch_description: "Fix OAuthBearer OIDC preprocessor directive when using CMake without CUR"
patch_type: "official"
patch_source: "https://github.com/confluentinc/librdkafka/pull/5136"
"2.8.0":
- patch_file: patches/0001-Change-library-names-1-9-1.patch
patch_description: "find_package conan packages"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff --git a/src/rdkafka_conf.c b/src/rdkafka_conf.c
--- a/src/rdkafka_conf.c (revision 69b1865efdc0118cd017760d038d34e52fb3f0d0)
+++ b/src/rdkafka_conf.c (date 1755856167319)
@@ -56,7 +56,7 @@
#include <windows.h>
#endif

-#ifdef WITH_OAUTHBEARER_OIDC
+#if WITH_OAUTHBEARER_OIDC
#include <curl/curl.h>
#endif

2 changes: 2 additions & 0 deletions recipes/librdkafka/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
versions:
"2.11.1":
folder: all
"2.8.0":
folder: all
"2.6.1":
Expand Down