From: Khem Raj Date: Mon, 25 Feb 2019 20:06:47 +0000 (+0000) Subject: winsys/svga/drm: Include sys/types.h X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=da84d071a6f4c33015525c168d22c0f121025010;p=mesa.git winsys/svga/drm: Include sys/types.h vmw_screen.h uses dev_t which is defines in sys/types.h this header is required to be included for getting dev_t definition. This issue happens on musl C library, it is hidden on glibc since sys/types.h is included through another system headers Reviewed-by: Eric Engestrom --- diff --git a/src/gallium/winsys/svga/drm/vmw_screen.h b/src/gallium/winsys/svga/drm/vmw_screen.h index a87c087d9c5..cb34fec48e7 100644 --- a/src/gallium/winsys/svga/drm/vmw_screen.h +++ b/src/gallium/winsys/svga/drm/vmw_screen.h @@ -41,6 +41,7 @@ #include "svga_winsys.h" #include "pipebuffer/pb_buffer_fenced.h" #include +#include #define VMW_GMR_POOL_SIZE (16*1024*1024) #define VMW_QUERY_POOL_SIZE (8192)