From a879c59a082707e0e7dfa8ebeb7b239551ec9c71 Mon Sep 17 00:00:00 2001 From: Bart Ribbers Date: Thu, 11 Jan 2024 16:58:52 +0100 Subject: [PATCH] Fix building of tests on Musl by making sure to include sys/select.h Required for access to fd_set --- tests/waylandservertest.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/waylandservertest.cpp b/tests/waylandservertest.cpp index d6210be373..1447152306 100644 --- a/tests/waylandservertest.cpp +++ b/tests/waylandservertest.cpp @@ -16,6 +16,7 @@ #include #include +#include #include static int startXServer()