summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
authorGravatar bunnei2015-01-12 00:44:45 -0500
committerGravatar bunnei2015-01-12 00:44:45 -0500
commit2f7069f9bda8ce466e99b1202eaa1cc06125fd6f (patch)
tree968b7da92722d34ab37153f39aedfed693fed376 /src/core/hle
parentMerge pull request #468 from lioncash/adc (diff)
parentFix building on MinGW (diff)
downloadyuzu-2f7069f9bda8ce466e99b1202eaa1cc06125fd6f.tar.gz
yuzu-2f7069f9bda8ce466e99b1202eaa1cc06125fd6f.tar.xz
yuzu-2f7069f9bda8ce466e99b1202eaa1cc06125fd6f.zip
Merge pull request #452 from darkf/mingwagain
Fix MinGW build, again
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/soc_u.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/core/hle/service/soc_u.cpp b/src/core/hle/service/soc_u.cpp
index f502c6afe..bb8ee86be 100644
--- a/src/core/hle/service/soc_u.cpp
+++ b/src/core/hle/service/soc_u.cpp
@@ -7,6 +7,19 @@
7#if EMU_PLATFORM == PLATFORM_WINDOWS 7#if EMU_PLATFORM == PLATFORM_WINDOWS
8#include <winsock2.h> 8#include <winsock2.h>
9#include <ws2tcpip.h> 9#include <ws2tcpip.h>
10
11// MinGW does not define several errno constants
12#ifndef _MSC_VER
13#define EBADMSG 104
14#define ENODATA 120
15#define ENOMSG 122
16#define ENOSR 124
17#define ENOSTR 125
18#define ETIME 137
19#define EIDRM 2001
20#define ENOLINK 2002
21#endif // _MSC_VER
22
10#else 23#else
11#include <sys/socket.h> 24#include <sys/socket.h>
12#include <netinet/in.h> 25#include <netinet/in.h>