diff options
| -rw-r--r-- | CMakeLists.txt | 6 | ||||
| -rw-r--r-- | src/citra/citra.rc | bin | 566 -> 282 bytes | |||
| -rw-r--r-- | src/core/hle/service/soc_u.cpp | 13 |
3 files changed, 19 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 20a5a011a..d70c872b2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -117,6 +117,12 @@ IF (APPLE) | |||
| 117 | 117 | ||
| 118 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") | 118 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") |
| 119 | set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -stdlib=libc++") | 119 | set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -stdlib=libc++") |
| 120 | ELSEIF(MINGW) | ||
| 121 | # GCC does not support codecvt, so use iconv instead | ||
| 122 | set(PLATFORM_LIBRARIES winmm ws2_32 iconv) | ||
| 123 | |||
| 124 | # WSAPoll functionality doesn't exist before WinNT 6.x (Vista and up) | ||
| 125 | add_definitions(-D_WIN32_WINNT=0x0600) | ||
| 120 | ELSEIF(WIN32) | 126 | ELSEIF(WIN32) |
| 121 | set(PLATFORM_LIBRARIES winmm ws2_32) | 127 | set(PLATFORM_LIBRARIES winmm ws2_32) |
| 122 | ELSE() | 128 | ELSE() |
diff --git a/src/citra/citra.rc b/src/citra/citra.rc index c28e7dbe5..0165e93da 100644 --- a/src/citra/citra.rc +++ b/src/citra/citra.rc | |||
| Binary files differ | |||
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> |