backends/drm: add missing sys/types.h include
This include is needed for the type dev_t used in this file. Issue seen when compiling with musl libc on Alpine / postmarketOS.
This commit is contained in:
parent
07eafe3b0b
commit
21420a8671
1 changed files with 3 additions and 0 deletions
|
@ -16,6 +16,9 @@
|
|||
#include <QSocketNotifier>
|
||||
#include <QVector>
|
||||
|
||||
// system
|
||||
#include <sys/types.h>
|
||||
|
||||
#include <memory>
|
||||
|
||||
struct gbm_bo;
|
||||
|
|
Loading…
Reference in a new issue