aboutsummaryrefslogtreecommitdiff
path: root/ports/freetds/crypt32.patch
diff options
context:
space:
mode:
authorBilly O'Neal <bion@microsoft.com>2020-10-20 16:13:43 -0700
committerGitHub <noreply@github.com>2020-10-20 16:13:43 -0700
commitb14aa50824c073629f1c7b44ded905a7b4bd7152 (patch)
tree04511c685bf7bc9fa9e80cc171063be604853ab8 /ports/freetds/crypt32.patch
parent4e3e210e8df9fa7f277804196ed6f42c8df2dda7 (diff)
downloadvcpkg-b14aa50824c073629f1c7b44ded905a7b4bd7152.tar.gz
vcpkg-b14aa50824c073629f1c7b44ded905a7b4bd7152.zip
[freetds] Update to v1.2.5 and update source to github. (#14120)
Diffstat (limited to 'ports/freetds/crypt32.patch')
-rw-r--r--ports/freetds/crypt32.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/ports/freetds/crypt32.patch b/ports/freetds/crypt32.patch
deleted file mode 100644
index a3af75693..000000000
--- a/ports/freetds/crypt32.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 796625e17..fc9076f54 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -149,6 +149,9 @@ if(OPENSSL_FOUND)
- config_write("#define HAVE_OPENSSL 1\n\n")
- include_directories(${OPENSSL_INCLUDE_DIR})
- set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_LIBRARIES})
-+ if(WIN32)
-+ list(APPEND CMAKE_REQUIRED_LIBRARIES crypt32 ws2_32)
-+ endif()
- check_function_exists_define(BIO_get_data)
- check_function_exists_define(RSA_get0_key)
- check_function_exists_define(ASN1_STRING_get0_data)
-@@ -441,7 +444,10 @@ else(WIN32)
- endif(WIN32)
-
- if(OPENSSL_FOUND)
- set(lib_NETWORK ${lib_NETWORK} ${OPENSSL_LIBRARIES})
-+ if(WIN32)
-+ list(APPEND lib_NETWORK crypt32)
-+ endif()
- elseif(GNUTLS_FOUND)
- set(lib_NETWORK ${lib_NETWORK} ${lib_GNUTLS})
- endif(OPENSSL_FOUND)