diff options
| author | Alexander Neumann <30894796+Neumann-A@users.noreply.github.com> | 2019-05-26 06:44:29 +0200 |
|---|---|---|
| committer | Curtis J Bezault <curtbezault@gmail.com> | 2019-05-25 21:44:29 -0700 |
| commit | 4a03181c7926bcaff0e191f25d44e5d539162704 (patch) | |
| tree | e80f54a9ea3741c7e392681d526c83ab3790b913 | |
| parent | bdb77a361ca47a25158fe6fb907f0133b82f8f4b (diff) | |
| download | vcpkg-4a03181c7926bcaff0e191f25d44e5d539162704.tar.gz vcpkg-4a03181c7926bcaff0e191f25d44e5d539162704.zip | |
[boost-iostream] fix zstd library linkage. (#6624)
| -rw-r--r-- | ports/boost-iostreams/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | ports/boost-iostreams/CONTROL | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ports/boost-iostreams/CMakeLists.txt b/ports/boost-iostreams/CMakeLists.txt index 454e74845..582377d4c 100644 --- a/ports/boost-iostreams/CMakeLists.txt +++ b/ports/boost-iostreams/CMakeLists.txt @@ -30,7 +30,7 @@ find_package(LibLZMA REQUIRED) target_include_directories(boost_iostreams PRIVATE ${LIBLZMA_INCLUDE_DIRS})
target_link_libraries(boost_iostreams PRIVATE ${LIBLZMA_LIBRARIES})
-find_library(ZSTD_LIBRARY NAMES zstdd zstd_staticd zstd zstd_static)
+find_library(ZSTD_LIBRARY NAMES zstdd zstd_staticd zstd zstd_static NAMES_PER_DIR)
target_link_libraries(boost_iostreams PRIVATE ${ZSTD_LIBRARY})
install(TARGETS boost_iostreams
diff --git a/ports/boost-iostreams/CONTROL b/ports/boost-iostreams/CONTROL index 6482fcd6d..84d1448b8 100644 --- a/ports/boost-iostreams/CONTROL +++ b/ports/boost-iostreams/CONTROL @@ -1,5 +1,5 @@ # Automatically generated by boost-vcpkg-helpers/generate-ports.ps1
Source: boost-iostreams
-Version: 1.70.0
+Version: 1.70.0-1
Build-Depends: boost-assert, boost-bind, boost-build, boost-config, boost-core, boost-detail, boost-function, boost-integer, boost-iterator, boost-mpl, boost-numeric-conversion, boost-preprocessor, boost-range, boost-regex, boost-smart-ptr, boost-static-assert, boost-throw-exception, boost-type-traits, boost-utility, boost-vcpkg-helpers, bzip2, liblzma, zlib, zstd
Description: Boost iostreams module
|
