diff options
| -rw-r--r-- | src/core/hle/service/sockets/sfdnsres.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/sockets/sfdnsres.cpp b/src/core/hle/service/sockets/sfdnsres.cpp index 2e5666ca8..a193fb578 100644 --- a/src/core/hle/service/sockets/sfdnsres.cpp +++ b/src/core/hle/service/sockets/sfdnsres.cpp | |||
| @@ -18,7 +18,11 @@ | |||
| 18 | #elif YUZU_UNIX | 18 | #elif YUZU_UNIX |
| 19 | #include <arpa/inet.h> | 19 | #include <arpa/inet.h> |
| 20 | #include <netdb.h> | 20 | #include <netdb.h> |
| 21 | #include <netinet/in.h> | ||
| 21 | #include <sys/socket.h> | 22 | #include <sys/socket.h> |
| 23 | #ifndef EAI_NODATA | ||
| 24 | #define EAI_NODATA EAI_NONAME | ||
| 25 | #endif | ||
| 22 | #endif | 26 | #endif |
| 23 | 27 | ||
| 24 | namespace Service::Sockets { | 28 | namespace Service::Sockets { |