summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorJoshua Vandaƫle <joshua@vandaele.software>2026-06-24 08:53:44 +0200
committerJoshua Vandaƫle <joshua@vandaele.software>2026-06-24 20:17:35 +0200
commitd52afbf83b734cd2bd968a31aaaa2ede4259afb9 (patch)
tree36a3142c49feaad015e73a806930aa0afa0e1aeb /Source
parent8230647205bf18b782126df821b81e76e90e2722 (diff)
TAPServerConnection: Fix builds with LLVM toolchain
On an Alpine system using a full LLVM toolchain, building fails because `fd_set`/`timeval` are undefined.
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Core/HW/EXI/BBA/TAPServerConnection.cpp1
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>