diff options
author | Andras Timar <andras.timar@collabora.com> | 2023-04-02 21:00:42 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2023-04-02 21:00:42 +0200 |
commit | 89a64ffb33fdbeec5cafda5f1bc2162b5fadff26 (patch) | |
tree | 01cbadcfc424bb3008820f9d0f57e4613c3ae691 | |
parent | 6b08bbe41e3a99909024b9c30ff6ba91a2c224cc (diff) |
fix Python build with OpenSSL 1.1.0 in Windowsmimo-6.2.8.2.M11
Change-Id: I7010a82837296a5ab9407b2bc174f05a39c45b40
-rw-r--r-- | external/python3/python-3.5.4-ssl.patch.1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/external/python3/python-3.5.4-ssl.patch.1 b/external/python3/python-3.5.4-ssl.patch.1 index beb6fe38882f..3f63683295f5 100644 --- a/external/python3/python-3.5.4-ssl.patch.1 +++ b/external/python3/python-3.5.4-ssl.patch.1 @@ -34,7 +34,7 @@ diff -ru python3.orig/PCbuild/_ssl.vcxproj python3/PCbuild/_ssl.vcxproj </ClCompile>
<Link>
- <AdditionalDependencies>ws2_32.lib;crypt32.lib;$(OutDir)libeay$(PyDebugExt).lib;$(OutDir)ssleay$(PyDebugExt).lib;%(AdditionalDependencies)</AdditionalDependencies>
-+ <AdditionalDependencies>ws2_32.lib;crypt32.lib;$(WORKDIR)\UnpackedTarball\openssl\out32dll\libeay32.lib;$(WORKDIR)\UnpackedTarball\openssl\out32dll\ssleay32.lib;%(AdditionalDependencies)</AdditionalDependencies>
++ <AdditionalDependencies>ws2_32.lib;crypt32.lib;$(WORKDIR)\UnpackedTarball\openssl\libcrypto.lib;$(WORKDIR)\UnpackedTarball\openssl\libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
@@ -80,4 +80,4 @@ diff -ru python3.orig/setup.py python3/setup.py + '/usr/local/ssl/lib', '/usr/contrib/ssl/lib/' ] ) - + |