From d71243aa07d501def4cbbf190b9261ca46114ad3 Mon Sep 17 00:00:00 2001 From: Bart Ribbers Date: Sun, 24 Mar 2024 20:09:20 +0100 Subject: [PATCH] Add missing include on sys/types.h to fix build on Musl libc I guess sys/types.h is implicitely included on glibc but that's definitely not the case on Musl libc. The include is however necessary to define dev_t introduced in 3c82d5a919f --- src/core/drmdevice.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/drmdevice.h b/src/core/drmdevice.h index e5887b3b32..f56bbe4a01 100644 --- a/src/core/drmdevice.h +++ b/src/core/drmdevice.h @@ -9,6 +9,7 @@ #pragma once #include +#include #include "graphicsbufferallocator.h" #include "kwin_export.h"