Merge pull request #1348 from p12tic/fix-openssl-windows-applink
Include openssl applink shim into Windows builds
This commit is contained in:
commit
dd31d0a539
|
@ -57,6 +57,12 @@
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
|
|
||||||
|
#if SYSAPI_WIN32
|
||||||
|
// Windows builds require a shim that makes it possible to link to different
|
||||||
|
// versions of the Win32 C runtime. See OpenSSL FAQ.
|
||||||
|
#include <openssl/applink.c>
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace barrier {
|
namespace barrier {
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
Loading…
Reference in New Issue