aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Neumann <30894796+Neumann-A@users.noreply.github.com>2019-09-30 17:49:36 +0200
committerCurtis J Bezault <curtbezault@gmail.com>2019-09-30 08:49:36 -0700
commit4279a792081355844c93f91068111a9e42aa45ab (patch)
treee9583c111fa07f6f692cd9374c71f728206d5b72
parent94b7f9a6a8c527d7dbdb3b78a46f0874b79712a4 (diff)
downloadvcpkg-4279a792081355844c93f91068111a9e42aa45ab.tar.gz
vcpkg-4279a792081355844c93f91068111a9e42aa45ab.zip
[vtk] fix typo in lzma and lz4 patch (#8403)
* correct find_library call there was a typo. * fix find_library call * Update CONTROL
-rw-r--r--ports/vtk/CONTROL2
-rw-r--r--ports/vtk/fix-find-lz4.patch2
-rw-r--r--ports/vtk/fix-find-lzma.patch2
3 files changed, 3 insertions, 3 deletions
diff --git a/ports/vtk/CONTROL b/ports/vtk/CONTROL
index 655548af7..e4f771407 100644
--- a/ports/vtk/CONTROL
+++ b/ports/vtk/CONTROL
@@ -1,5 +1,5 @@
Source: vtk
-Version: 8.2.0-7
+Version: 8.2.0-8
Description: Software system for 3D computer graphics, image processing, and visualization
Homepage: https://github.com/Kitware/VTK
Build-Depends: zlib, libpng, tiff, libxml2, jsoncpp, glew, freetype, expat, hdf5, libjpeg-turbo, proj4, lz4, libtheora, atlmfc (windows), eigen3, double-conversion, pugixml, libharu, sqlite3, netcdf-c
diff --git a/ports/vtk/fix-find-lz4.patch b/ports/vtk/fix-find-lz4.patch
index 7389a24f4..488640de8 100644
--- a/ports/vtk/fix-find-lz4.patch
+++ b/ports/vtk/fix-find-lz4.patch
@@ -6,7 +6,7 @@ index 07343e1f79..b43a9af2c7 100644
-
-find_library(LZ4_LIBRARIES NAMES lz4)
+find_library(LZ4_LIBRARY NAMES lz4 PATH_SUFFIXES lib)
-+find_library(LZ4_LIBRARY_DEBUG NAME lz4d PATH_SUFFIXES debug/lib)
++find_library(LZ4_LIBRARY_DEBUG NAMES lz4d PATH_SUFFIXES debug/lib)
find_path(LZ4_INCLUDE_DIRS NAMES lz4.h)
+if(NOT LZ4_LIBRARY_DEBUG)
diff --git a/ports/vtk/fix-find-lzma.patch b/ports/vtk/fix-find-lzma.patch
index a194b6f9b..b2e375fc4 100644
--- a/ports/vtk/fix-find-lzma.patch
+++ b/ports/vtk/fix-find-lzma.patch
@@ -6,7 +6,7 @@ index 213ab18df1..1e290da4cb 100644
-find_library(LZMA_LIBRARIES NAMES lzma)
+find_library(LZMA_LIBRARY_RELEASE NAMES lzma PATH_SUFFIXES lib)
-+find_library(LZMA_LIBRARY_DEBUG NAME lzmad PATH_SUFFIXES debug/lib)
++find_library(LZMA_LIBRARY_DEBUG NAMES lzmad PATH_SUFFIXES debug/lib)
find_path(LZMA_INCLUDE_DIRS NAMES lzma.h)
+select_library_configurations(LZMA)