1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-10-13 16:16:00 -05:00

Merge pull request #8196 from jbeich/freebsd

service: sfdnsres: unbreak build on FreeBSD
This commit is contained in:
bunnei
2022-04-11 20:58:35 -07:00
committed by GitHub

View File

@@ -18,7 +18,11 @@
#elif YUZU_UNIX
#include <arpa/inet.h>
#include <netdb.h>
#include <netinet/in.h>
#include <sys/socket.h>
#ifndef EAI_NODATA
#define EAI_NODATA EAI_NONAME
#endif
#endif
namespace Service::Sockets {