diff options
| author | 2022-04-11 20:58:35 -0700 | |
|---|---|---|
| committer | 2022-04-11 20:58:35 -0700 | |
| commit | fc258f1d7aa39870c3ca1bc1ab5850576a247d57 (patch) | |
| tree | e5d64a3c8f17ec99b8acc313f11cde670d590ec1 | |
| parent | Merge pull request #8180 from liamwhite/symbols (diff) | |
| parent | service: sfdnsres: add missing includes for some BSDs after 82d46a974ad4 (diff) | |
| download | yuzu-fc258f1d7aa39870c3ca1bc1ab5850576a247d57.tar.gz yuzu-fc258f1d7aa39870c3ca1bc1ab5850576a247d57.tar.xz yuzu-fc258f1d7aa39870c3ca1bc1ab5850576a247d57.zip | |
Merge pull request #8196 from jbeich/freebsd
service: sfdnsres: unbreak build on FreeBSD
Diffstat (limited to '')
| -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 { |