diff options
| author | Joshua Vandaƫle <joshua@vandaele.software> | 2026-06-24 08:53:44 +0200 |
|---|---|---|
| committer | Joshua Vandaƫle <joshua@vandaele.software> | 2026-06-24 20:17:35 +0200 |
| commit | d52afbf83b734cd2bd968a31aaaa2ede4259afb9 (patch) | |
| tree | 36a3142c49feaad015e73a806930aa0afa0e1aeb | |
| parent | 8230647205bf18b782126df821b81e76e90e2722 (diff) | |
TAPServerConnection: Fix builds with LLVM toolchain
On an Alpine system using a full LLVM toolchain, building fails because `fd_set`/`timeval` are undefined.
| -rw-r--r-- | Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp index d70e3eadb2..3bef36ad77 100644 --- a/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp +++ b/Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp @@ -11,6 +11,7 @@ #include <ws2ipdef.h> #else #include <netinet/in.h> +#include <sys/select.h> #include <sys/socket.h> #include <sys/un.h> #include <unistd.h> |
