File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,11 @@ build_script:
4343 if "%GENERATOR%"=="MSYS Makefiles" (C:\MinGW\msys\1.0\bin\sh --login /c/projects/libgit2/script/appveyor-mingw.sh)
4444test_script :
4545- ps : |
46+ # Disable DHE key exchange to fix intermittent build failures ("A buffer
47+ # provided was too small") due to SChannel bug. See e.g.
48+ # - https://github.com/aws/aws-sdk-cpp/issues/671
49+ # - https://github.com/dotnet/corefx/issues/7812
50+ New-Item HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\KeyExchangeAlgorithm\Diffie-Hellman -Force | New-ItemProperty -Name Enabled -Value 0 -Force
4651 $ErrorActionPreference="Stop"
4752 Start-FileDownload https://github.com/ethomson/poxyproxy/releases/download/v0.1.0/poxyproxy-0.1.0.jar -FileName poxyproxy.jar
4853 # Run this early so we know it's ready by the time we need it
Original file line number Diff line number Diff line change 1010#include "common.h"
1111
1212#ifdef GIT_WIN32
13+ # include "win32/utf-conv.h"
1314# include "win32/w32_buffer.h"
15+
16+ # ifdef HAVE_QSORT_S
17+ # include <search.h>
18+ # endif
1419#endif
1520
1621#ifdef _MSC_VER
You can’t perform that action at this time.
0 commit comments