mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-19 05:53:03 +08:00
Enable additional authentication mechanisms in librdkafka (#39184)
The main reasons from what I can tell for enabling SSL or CURL is to also be able to enabled additional authentication mechanisms
This commit is contained in:
parent
b64343a250
commit
638daad57d
@ -13,10 +13,13 @@ string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" RDKAFKA_BUILD_STATIC)
|
||||
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
||||
FEATURES
|
||||
ssl WITH_SSL
|
||||
ssl WITH_SASL_OAUTHBEARER
|
||||
ssl WITH_SASL_SCRAM
|
||||
zlib WITH_ZLIB
|
||||
zstd WITH_ZSTD
|
||||
snappy WITH_SNAPPY
|
||||
curl WITH_CURL
|
||||
curl WITH_OAUTHBEARER_OIDC
|
||||
)
|
||||
|
||||
vcpkg_cmake_configure(
|
||||
|
@ -1,6 +1,7 @@
|
||||
{
|
||||
"name": "librdkafka",
|
||||
"version": "2.3.0",
|
||||
"port-version": 1,
|
||||
"description": "The Apache Kafka C/C++ library",
|
||||
"homepage": "https://github.com/edenhill/librdkafka",
|
||||
"license": null,
|
||||
|
@ -4894,7 +4894,7 @@
|
||||
},
|
||||
"librdkafka": {
|
||||
"baseline": "2.3.0",
|
||||
"port-version": 0
|
||||
"port-version": 1
|
||||
},
|
||||
"libredwg": {
|
||||
"baseline": "0.13.3",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "420acc8b75e00d2fec12c4b991f63d909b69e022",
|
||||
"version": "2.3.0",
|
||||
"port-version": 1
|
||||
},
|
||||
{
|
||||
"git-tree": "a84ea0202e606993c8377b34bdbea3c84e08d792",
|
||||
"version": "2.3.0",
|
||||
|
Loading…
Reference in New Issue
Block a user