diff options
| author | Rodrigo Trida <44525262+rotrida@users.noreply.github.com> | 2019-08-08 17:02:10 +0100 |
|---|---|---|
| committer | Curtis J Bezault <curtbezault@gmail.com> | 2019-08-08 12:02:10 -0400 |
| commit | 73fa03965bf1a54a779f24ea1be1660e246db6ab (patch) | |
| tree | d78125b4d57b08249da560d63817c9f6b4ef272e | |
| parent | 0857d713a088bff086f7b008e5d7670329733f94 (diff) | |
| download | vcpkg-73fa03965bf1a54a779f24ea1be1660e246db6ab.tar.gz vcpkg-73fa03965bf1a54a779f24ea1be1660e246db6ab.zip | |
Librdkafka snappy (#7469)
* Adding snappy support.
* Building without win 32 config.
* Restoring original state.
* Changing version and replacing tab with spaces.
* Remove snappy as a build-depends
The snappy feature does not require any external sources.
| -rw-r--r-- | ports/librdkafka/CONTROL | 5 | ||||
| -rw-r--r-- | ports/librdkafka/portfile.cmake | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/ports/librdkafka/CONTROL b/ports/librdkafka/CONTROL index f4030ff08..9b520bbe3 100644 --- a/ports/librdkafka/CONTROL +++ b/ports/librdkafka/CONTROL @@ -1,5 +1,5 @@ Source: librdkafka
-Version: 1.1.0
+Version: 1.1.0-1
Description: The Apache Kafka C/C++ library
Homepage: https://github.com/edenhill/librdkafka
@@ -18,3 +18,6 @@ Build-Depends: zlib Feature: zstd
Description: Build with zstd
Build-Depends: zstd
+
+Feature: snappy
+Description: Build with snappy
diff --git a/ports/librdkafka/portfile.cmake b/ports/librdkafka/portfile.cmake index 5bc66fdfa..84c50c8fa 100644 --- a/ports/librdkafka/portfile.cmake +++ b/ports/librdkafka/portfile.cmake @@ -17,6 +17,7 @@ vcpkg_check_features( ssl WITH_SSL
zlib WITH_ZLIB
zstd WITH_ZSTD
+ snappy WITH_SNAPPY
)
vcpkg_configure_cmake(
|
