aboutsummaryrefslogtreecommitdiff
path: root/ports/cppfs/LibCrypto-fix.patch
diff options
context:
space:
mode:
authorConnor Fitzgerald <connorwadefitzgerald@gmail.com>2019-03-06 16:16:52 -0500
committerVictor Romero <romerosanchezv@gmail.com>2019-03-06 13:16:52 -0800
commit40c1a2305cd94c4b00e8104586ac52b49ba17956 (patch)
tree7ea5998a580dcacf35bbedee976b0d151019e1dc /ports/cppfs/LibCrypto-fix.patch
parentf6f2def009f6a77874164b519d53aa944069f280 (diff)
downloadvcpkg-40c1a2305cd94c4b00e8104586ac52b49ba17956.tar.gz
vcpkg-40c1a2305cd94c4b00e8104586ac52b49ba17956.zip
[cppfs] Add new port (#5571)
* [cppfs] Add new port * [cppfs] Remove explicit libcrypto dependency * [cppfs] Use vcpkg targets * [cppfs] Don't use local find modules * [cppfs] Disable arm64 and uwp * [cppfs] Make portfile indentation consistent
Diffstat (limited to 'ports/cppfs/LibCrypto-fix.patch')
-rw-r--r--ports/cppfs/LibCrypto-fix.patch53
1 files changed, 53 insertions, 0 deletions
diff --git a/ports/cppfs/LibCrypto-fix.patch b/ports/cppfs/LibCrypto-fix.patch
new file mode 100644
index 000000000..144d2aabe
--- /dev/null
+++ b/ports/cppfs/LibCrypto-fix.patch
@@ -0,0 +1,53 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index ea9fd15..af63d1e 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -7,7 +7,7 @@
+ cmake_minimum_required(VERSION 3.0 FATAL_ERROR)
+
+ # Include cmake modules
+-list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
++# list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
+
+ include(GenerateExportHeader)
+
+diff --git a/source/cppfs/CMakeLists.txt b/source/cppfs/CMakeLists.txt
+index aa37eda..d29176a 100644
+--- a/source/cppfs/CMakeLists.txt
++++ b/source/cppfs/CMakeLists.txt
+@@ -4,18 +4,18 @@
+ #
+
+ find_package(LibSSH2)
+-find_package(LibCrypto)
++# find_package(LibCrypto)
+ find_package(ZLIB)
+ find_package(OpenSSL)
+
+-if (LibSSH2_FOUND AND LibCrypto_FOUND AND ZLIB_FOUND AND OpenSSL_FOUND)
++if (LibSSH2_FOUND AND ZLIB_FOUND AND OpenSSL_FOUND)
+ set(SSH_DEPS_MET TRUE)
+ else()
+ set(SSH_DEPS_MET FALSE)
+ endif()
+
+ if (OPTION_BUILD_SSH_BACKEND AND NOT SSH_DEPS_MET)
+- message(FATAL_ERROR "Requested to build ssh module but not all dependencies are found! LibSSH2: ${LibSSH2_FOUND}, LibCrypto: ${LibCrypto_FOUND}, ZLIB: ${ZLIB_FOUND}, OpenSSL: ${OpenSSL_FOUND}")
++ message(FATAL_ERROR "Requested to build ssh module but not all dependencies are found! LibSSH2: ${LibSSH2_FOUND}, ZLIB: ${ZLIB_FOUND}, OpenSSL: ${OpenSSL_FOUND}")
+ endif()
+
+
+@@ -207,10 +207,9 @@ target_link_libraries(${target}
+ if (OPTION_BUILD_SSH_BACKEND)
+ target_link_libraries(${target}
+ PRIVATE
+- ${OPENSSL_LIBRARIES}
+- ${LIBSSH2_LIBRARY}
+- ${LIBCRYPTO_LIBRARY}
+- ${ZLIB_LIBRARY}
++ Libssh2::libssh2
++ OpenSSL::SSL OpenSSL::Crypto
++ ZLIB::ZLIB
+ )
+
+ if("${CMAKE_SYSTEM_NAME}" MATCHES "Windows")