Commit 53fc54d5 by Edward Thomson

Merge pull request #2930 from akikoskinen/maint/v0.22

Fix build on mingw
parents 09c24770 d95c949a
......@@ -33,6 +33,7 @@
# include <direct.h>
# include <winsock2.h>
# include <windows.h>
# include <ws2tcpip.h>
# include "win32/msvc-compat.h"
# include "win32/mingw-compat.h"
# include "win32/error.h"
......
......@@ -7,10 +7,6 @@
#ifdef GIT_SSL
#include <openssl/ssl.h>
#include <openssl/err.h>
#include <openssl/x509v3.h>
#include <ctype.h>
#include "global.h"
......@@ -20,6 +16,10 @@
#include "netops.h"
#include "git2/transport.h"
#include <openssl/ssl.h>
#include <openssl/err.h>
#include <openssl/x509v3.h>
static int ssl_set_error(SSL *ssl, int error)
{
int err;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment