aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphiljdf <git@pfelton.co.uk>2020-01-31 14:53:14 +0000
committerphiljdf <git@pfelton.co.uk>2020-01-31 14:53:14 +0000
commit5268c6766e865a7f0d6c779ae82ddb5cb7e700af (patch)
tree425bda7205ffa350703ee5b6de633386d6790f9b
parent87a281601949c2af152db3d62b2f0b84527642a7 (diff)
downloadvcpkg-5268c6766e865a7f0d6c779ae82ddb5cb7e700af.tar.gz
vcpkg-5268c6766e865a7f0d6c779ae82ddb5cb7e700af.zip
Re-enable compression libs
-rw-r--r--ports/arrow/CONTROL2
-rw-r--r--ports/arrow/portfile.cmake6
2 files changed, 7 insertions, 1 deletions
diff --git a/ports/arrow/CONTROL b/ports/arrow/CONTROL
index 575cad7e8..5da695487 100644
--- a/ports/arrow/CONTROL
+++ b/ports/arrow/CONTROL
@@ -1,5 +1,5 @@
Source: arrow
Version: 0.16.0
-Build-Depends: boost-system, boost-filesystem, boost-multiprecision, boost-algorithm, flatbuffers, rapidjson, zlib, lz4, brotli, zstd, snappy, gflags, thrift, double-conversion, glog, uriparser
+Build-Depends: boost-system, boost-filesystem, boost-multiprecision, boost-algorithm, flatbuffers, rapidjson, zlib, lz4, brotli, bzip2, zstd, snappy, gflags, thrift, double-conversion, glog, uriparser
Homepage: https://github.com/apache/arrow
Description: Apache Arrow is a columnar in-memory analytics layer designed to accelerate big data. It houses a set of canonical in-memory representations of flat and hierarchical data along with multiple language-bindings for structure manipulation. It also provides IPC and common algorithm implementations.
diff --git a/ports/arrow/portfile.cmake b/ports/arrow/portfile.cmake
index 406a9c0b9..c1caba4d5 100644
--- a/ports/arrow/portfile.cmake
+++ b/ports/arrow/portfile.cmake
@@ -30,6 +30,12 @@ vcpkg_configure_cmake(
-DARROW_GFLAGS_USE_SHARED=off
-DARROW_JEMALLOC=off
-DARROW_BUILD_UTILITIES=OFF
+ -DARROW_WITH_BZ2=ON
+ -DARROW_WITH_ZLIB=ON
+ -DARROW_WITH_ZSTD=ON
+ -DARROW_WITH_LZ4=ON
+ -DARROW_WITH_SNAPPY=ON
+ -DARROW_WITH_BROTLI=ON
)
vcpkg_install_cmake()