Browse Source

Merge pull request #8196 from jbeich/freebsd

service: sfdnsres: unbreak build on FreeBSD
pull/15/merge
bunnei 4 years ago
committed by GitHub
parent
commit
fc258f1d7a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/core/hle/service/sockets/sfdnsres.cpp

4
src/core/hle/service/sockets/sfdnsres.cpp

@ -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 {

Loading…
Cancel
Save