aboutsummaryrefslogtreecommitdiff
path: root/ports/blosc/static-install-fix.patch
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2018-02-07 18:43:10 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2018-02-07 18:43:10 -0800
commitca1e6d8ab7b4e345fdab88afd11c03bf5fcc43a3 (patch)
tree829341fcfb63bb3ab62e1130dce94e1932b590d1 /ports/blosc/static-install-fix.patch
parent1e3435e32bc96ad59534238c45ebe00c708daf37 (diff)
downloadvcpkg-ca1e6d8ab7b4e345fdab88afd11c03bf5fcc43a3.tar.gz
vcpkg-ca1e6d8ab7b4e345fdab88afd11c03bf5fcc43a3.zip
[blosc] Update to 1.13.5
static-install-fix.patch no longer required (upstream contains the patched version). Resolves build error with VS 15.6 in static builds
Diffstat (limited to 'ports/blosc/static-install-fix.patch')
-rw-r--r--ports/blosc/static-install-fix.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/ports/blosc/static-install-fix.patch b/ports/blosc/static-install-fix.patch
deleted file mode 100644
index 3416bde57..000000000
--- a/ports/blosc/static-install-fix.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/blosc/CMakeLists.txt b/blosc/CMakeLists.txt
-index cd163f4..8cb1bdb 100644
---- a/blosc/CMakeLists.txt
-+++ b/blosc/CMakeLists.txt
-@@ -211,7 +211,9 @@ endif(BUILD_STATIC)
- # install
- if(BLOSC_INSTALL)
- install(FILES blosc.h blosc-export.h DESTINATION include COMPONENT DEV)
-- install(TARGETS blosc_shared DESTINATION ${lib_dir} COMPONENT LIB)
-+ if(BUILD_SHARED)
-+ install(TARGETS blosc_shared DESTINATION ${lib_dir} COMPONENT LIB)
-+ endif(BUILD_SHARED)
- if(BUILD_STATIC)
- install(TARGETS blosc_static DESTINATION ${lib_dir} COMPONENT DEV)
- endif(BUILD_STATIC)