summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTim Clem <timothy.clem@gmail.com>2012-06-15 11:25:52 -0700
committerTim Clem <timothy.clem@gmail.com>2012-06-15 11:25:52 -0700
commitac8eac2f6632de6215d970b77b420601cedd6a91 (patch)
treeada73df1a2e92a400551fd9e02a8d590a9c24f78 /src
parente00b56eb04145717ed3e8dc45cc4e03addccd7c7 (diff)
downloadlibgit2-ac8eac2f6632de6215d970b77b420601cedd6a91.tar.gz
Fix compile errors when building on windows
Errors were due to not including winsock2 early enough.
Diffstat (limited to 'src')
-rw-r--r--src/common.h1
-rw-r--r--src/netops.c1
2 files changed, 1 insertions, 1 deletions
diff --git a/src/common.h b/src/common.h
index e2a300291..419a8d06b 100644
--- a/src/common.h
+++ b/src/common.h
@@ -24,6 +24,7 @@
# include <io.h>
# include <direct.h>
+# include <winsock2.h>
# include <windows.h>
# include "win32/msvc-compat.h"
# include "win32/mingw-compat.h"
diff --git a/src/netops.c b/src/netops.c
index e6f3e5627..32554743f 100644
--- a/src/netops.c
+++ b/src/netops.c
@@ -12,7 +12,6 @@
# include <netdb.h>
# include <arpa/inet.h>
#else
-# include <winsock2.h>
# include <ws2tcpip.h>
# ifdef _MSC_VER
# pragma comment(lib, "ws2_32.lib")