aboutsummaryrefslogtreecommitdiff
path: root/ports/rocksdb/0004-static-linking-in-linux.patch
diff options
context:
space:
mode:
authorKoby Kahane <kobykahane@gmail.com>2020-10-13 03:13:33 +0300
committerGitHub <noreply@github.com>2020-10-12 17:13:33 -0700
commit248169d8eea9bdcfe9b56f4f0dfaaedae0aaa760 (patch)
tree3ce44da5e8bdebac2e121f94db2ef4dd49719906 /ports/rocksdb/0004-static-linking-in-linux.patch
parent6ce7f41d8e20cbf9c176d132ab78c68fd360ed39 (diff)
downloadvcpkg-248169d8eea9bdcfe9b56f4f0dfaaedae0aaa760.tar.gz
vcpkg-248169d8eea9bdcfe9b56f4f0dfaaedae0aaa760.zip
[rocksdb] update to v6.11.4 (#13643)
Diffstat (limited to 'ports/rocksdb/0004-static-linking-in-linux.patch')
-rw-r--r--ports/rocksdb/0004-static-linking-in-linux.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/ports/rocksdb/0004-static-linking-in-linux.patch b/ports/rocksdb/0004-static-linking-in-linux.patch
deleted file mode 100644
index afa4fd326..000000000
--- a/ports/rocksdb/0004-static-linking-in-linux.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index eebda35e9..53ec5fced 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -781,7 +781,12 @@ if(WIN32)
- set(LIBS ${ROCKSDB_STATIC_LIB} ${THIRDPARTY_LIBS} ${SYSTEM_LIBS})
- else()
- set(SYSTEM_LIBS ${CMAKE_THREAD_LIBS_INIT})
-- set(LIBS ${ROCKSDB_SHARED_LIB} ${THIRDPARTY_LIBS} ${SYSTEM_LIBS})
-+
-+ if(ROCKSDB_DISABLE_INSTALL_SHARED_LIB)
-+ set(LIBS ${ROCKSDB_STATIC_LIB} ${THIRDPARTY_LIBS} ${SYSTEM_LIBS})
-+ else()
-+ set(LIBS ${ROCKSDB_SHARED_LIB} ${THIRDPARTY_LIBS} ${SYSTEM_LIBS})
-+ endif()
-
- add_library(${ROCKSDB_SHARED_LIB} SHARED ${SOURCES})
- target_link_libraries(${ROCKSDB_SHARED_LIB}