aboutsummaryrefslogtreecommitdiff
path: root/ports/hdf5/link-libraries-private.patch
diff options
context:
space:
mode:
authorAlexander Neumann <Alexander.Neumann@hamburg.de>2019-03-14 22:29:33 +0100
committerAlexander Neumann <Alexander.Neumann@hamburg.de>2019-03-14 22:29:33 +0100
commit49f59fd081055e0a8de037c5cf5e410341eed09b (patch)
tree75ee3ae095dce52975665329a13e569d0c1aa4e9 /ports/hdf5/link-libraries-private.patch
parent69bacbb11d23d8fb9297c3fa2cb1cb9d181aa0c8 (diff)
downloadvcpkg-49f59fd081055e0a8de037c5cf5e410341eed09b.tar.gz
vcpkg-49f59fd081055e0a8de037c5cf5e410341eed09b.zip
updated hdf5 to 1.10.5.
Also now builds dynamic and static libs in dynamic build due to the targets exported by hdf5. (Revert to default hdf5 build behavior)
Diffstat (limited to 'ports/hdf5/link-libraries-private.patch')
-rw-r--r--ports/hdf5/link-libraries-private.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/ports/hdf5/link-libraries-private.patch b/ports/hdf5/link-libraries-private.patch
deleted file mode 100644
index df423b8bb..000000000
--- a/ports/hdf5/link-libraries-private.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- a/src/CMakeLists.txt Wed Jan 03 13:16:33 2018
-+++ b/src/CMakeLists.txt Wed Jan 03 13:16:56 2018
-@@ -925,12 +925,12 @@
- set (shared_gen_SRCS ${HDF5_BINARY_DIR}/shared/H5Tinit.c ${HDF5_BINARY_DIR}/shared/H5lib_settings.c)
- add_library (${HDF5_LIBSH_TARGET} SHARED ${common_SRCS} ${shared_gen_SRCS} ${H5_PUBLIC_HEADERS} ${H5_PRIVATE_HEADERS} ${H5_GENERATED_HEADERS})
- TARGET_C_PROPERTIES (${HDF5_LIBSH_TARGET} SHARED " " " ")
-- target_link_libraries (${HDF5_LIBSH_TARGET} ${LINK_SHARED_LIBS})
-+ target_link_libraries (${HDF5_LIBSH_TARGET} PRIVATE ${LINK_SHARED_LIBS})
- if (NOT WIN32)
-- target_link_libraries (${HDF5_LIBSH_TARGET} dl)
-+ target_link_libraries (${HDF5_LIBSH_TARGET} PRIVATE dl)
- endif ()
- if (H5_HAVE_PARALLEL AND MPI_C_FOUND)
-- target_link_libraries (${HDF5_LIBSH_TARGET} ${MPI_C_LIBRARIES})
-+ target_link_libraries (${HDF5_LIBSH_TARGET} PRIVATE ${MPI_C_LIBRARIES})
- endif ()
- set_global_variable (HDF5_LIBRARIES_TO_EXPORT "${HDF5_LIBRARIES_TO_EXPORT};${HDF5_LIBSH_TARGET}")
- H5_SET_LIB_OPTIONS (${HDF5_LIBSH_TARGET} ${HDF5_LIB_NAME} SHARED ${HDF5_PACKAGE_SOVERSION})
-@@ -945,7 +945,7 @@
- APPEND PROPERTY COMPILE_DEFINITIONS
- "H5_HAVE_THREADSAFE"
- )
-- target_link_libraries (${HDF5_LIBSH_TARGET} Threads::Threads)
-+ target_link_libraries (${HDF5_LIBSH_TARGET} PRIVATE Threads::Threads)
- endif ()
-
- if (HDF5_ENABLE_DEBUG_APIS)