0018-Win-Add-back-the-DLLSuffix-used-to-find-the-openssl-.patch 866 B

12345678910111213141516171819202122232425
  1. From d307ed7b926b06f9ec4e2ceb6da38ce7c6c68c2a Mon Sep 17 00:00:00 2001
  2. From: Marius van Niekerk <marius.v.niekerk@gmail.com>
  3. Date: Thu, 31 Oct 2019 16:46:21 -0400
  4. Subject: [PATCH 18/30] Win: Add back the DLLSuffix used to find the openssl
  5. dlls and debug files
  6. ---
  7. PCbuild/openssl.props | 1 +
  8. 1 file changed, 1 insertion(+)
  9. diff --git a/PCbuild/openssl.props b/PCbuild/openssl.props
  10. index af1350cae7..eeb8677517 100644
  11. --- a/PCbuild/openssl.props
  12. +++ b/PCbuild/openssl.props
  13. @@ -11,6 +11,7 @@
  14. </ItemDefinitionGroup>
  15. <PropertyGroup>
  16. <_DLLSuffix>-1_1</_DLLSuffix>
  17. + <_DLLSuffix Condition="$(Platform) == 'x64'">$(_DLLSuffix)-x64</_DLLSuffix>
  18. <_DLLSuffix Condition="$(Platform) == 'ARM'">$(_DLLSuffix)-arm</_DLLSuffix>
  19. <_DLLSuffix Condition="$(Platform) == 'ARM64'">$(_DLLSuffix)-arm64</_DLLSuffix>
  20. </PropertyGroup>
  21. --
  22. 2.23.0