diff options
author | Dong-hee Na <donghee.na@python.org> | 2021-07-23 14:04:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-23 14:04:30 (GMT) |
commit | 906fe47083bc9ab7ed2b70c99c1b0daad021f126 (patch) | |
tree | d3070c003f417d48527f79962aba51d48fb1b79b /PCbuild | |
parent | a4760cc32d9e5dac7be262e9736eb30502cd7be3 (diff) | |
download | cpython-906fe47083bc9ab7ed2b70c99c1b0daad021f126.zip cpython-906fe47083bc9ab7ed2b70c99c1b0daad021f126.tar.gz cpython-906fe47083bc9ab7ed2b70c99c1b0daad021f126.tar.bz2 |
bpo-44611: Use BCryptGenRandom instead of CryptGenRandom on Windows (GH-27168)
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 7cd3c21..7b2a9b5 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -106,7 +106,7 @@ <PreprocessorDefinitions Condition="$(IncludeExternals)">_Py_HAVE_ZLIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> </ClCompile> <Link> - <AdditionalDependencies>version.lib;shlwapi.lib;ws2_32.lib;pathcch.lib;%(AdditionalDependencies)</AdditionalDependencies> + <AdditionalDependencies>version.lib;shlwapi.lib;ws2_32.lib;pathcch.lib;bcrypt.lib;%(AdditionalDependencies)</AdditionalDependencies> </Link> </ItemDefinitionGroup> <ItemGroup> |