aboutsummaryrefslogtreecommitdiff
path: root/ports/rocksdb/0005-static-linking-in-linux.patch
diff options
context:
space:
mode:
authorKoby Kahane <kobykahane@gmail.com>2020-03-11 02:21:14 +0200
committerGitHub <noreply@github.com>2020-03-10 17:21:14 -0700
commita181bed0cf4f0c4bdae6ce852bedd5c9872cffc9 (patch)
treeeb70a8e30d1c522583061f1b2d6bd1852c08b0f1 /ports/rocksdb/0005-static-linking-in-linux.patch
parent980331d7a608bfbf70fd74b4a5f12885542342bd (diff)
downloadvcpkg-a181bed0cf4f0c4bdae6ce852bedd5c9872cffc9.tar.gz
vcpkg-a181bed0cf4f0c4bdae6ce852bedd5c9872cffc9.zip
[rocksdb] Update to v6.6.4 (#10123)
Diffstat (limited to 'ports/rocksdb/0005-static-linking-in-linux.patch')
-rw-r--r--ports/rocksdb/0005-static-linking-in-linux.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/ports/rocksdb/0005-static-linking-in-linux.patch b/ports/rocksdb/0005-static-linking-in-linux.patch
deleted file mode 100644
index 89defde68..000000000
--- a/ports/rocksdb/0005-static-linking-in-linux.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 0303186..2b09591 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -741,7 +741,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}