early-access version 2853
This commit is contained in:
34
externals/vcpkg/ports/leveldb/fix-dependencies.patch
vendored
Executable file
34
externals/vcpkg/ports/leveldb/fix-dependencies.patch
vendored
Executable file
@@ -0,0 +1,34 @@
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 98b87dc..76d2e9b 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -35,8 +35,14 @@ include(CheckIncludeFile)
|
||||
check_include_file("unistd.h" HAVE_UNISTD_H)
|
||||
|
||||
include(CheckLibraryExists)
|
||||
-check_library_exists(crc32c crc32c_value "" HAVE_CRC32C)
|
||||
-check_library_exists(snappy snappy_compress "" HAVE_SNAPPY)
|
||||
+if (WITH_CRC32C)
|
||||
+ find_package(Crc32c CONFIG REQUIRED)
|
||||
+ set(HAVE_CRC32C 1)
|
||||
+endif()
|
||||
+if (WITH_SNAPPY)
|
||||
+ find_package(Snappy CONFIG REQUIRED)
|
||||
+ set(HAVE_SNAPPY 1)
|
||||
+endif()
|
||||
check_library_exists(tcmalloc malloc "" HAVE_TCMALLOC)
|
||||
|
||||
include(CheckCXXSymbolExists)
|
||||
@@ -246,10 +252,10 @@ if(HAVE_CLANG_THREAD_SAFETY)
|
||||
endif(HAVE_CLANG_THREAD_SAFETY)
|
||||
|
||||
if(HAVE_CRC32C)
|
||||
- target_link_libraries(leveldb crc32c)
|
||||
+ target_link_libraries(leveldb Crc32c::crc32c)
|
||||
endif(HAVE_CRC32C)
|
||||
if(HAVE_SNAPPY)
|
||||
- target_link_libraries(leveldb snappy)
|
||||
+ target_link_libraries(leveldb Snappy::snappy)
|
||||
endif(HAVE_SNAPPY)
|
||||
if(HAVE_TCMALLOC)
|
||||
target_link_libraries(leveldb tcmalloc)
|
||||
Reference in New Issue
Block a user