1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: Link LZ4 plugin against hdf5
Without this, hdf5 is unable to load the plugin
Author: Enrico Zini <enrico@enricozini.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1025686
Forwarded: https://github.com/nexusformat/HDF5-External-Filter-Plugins/pull/27
Last-Update: 2022-12-12
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: hdf5-filter-plugin/LZ4/src/CMakeLists.txt
===================================================================
--- hdf5-filter-plugin.orig/LZ4/src/CMakeLists.txt
+++ hdf5-filter-plugin/LZ4/src/CMakeLists.txt
@@ -1,7 +1,7 @@
set(SOURCES H5Zlz4.c lz4_h5plugin.c)
set(INCLUDE_DIRS ${HDF5_INCLUDE_DIRS} ${LZ4_INCLUDE_DIRS})
-set(LINK_LIBS ${LZ4_LIBRARIES})
+set(LINK_LIBS ${LZ4_LIBRARIES} ${HDF5_LIBRARIES})
if(CMAKE_SYSTEM_NAME MATCHES Windows)
#
|