Re: [Mesa-dev] [PATCH] drivers/dri/i965: add missing #include

2018-06-12 Thread Eric Engestrom
On Tuesday, 2018-06-12 11:59:01 +0100, Ross Burton wrote: > brw_bufmgr.h uses time_t without include time.h, so the build fails under > musl. Indeed, in struct brw_bo. Reviewed-by: Eric Engestrom ... and pushed, thank :) > --- > src/mesa/drivers/dri/i965/brw_bufmgr.h | 2 ++ > 1 file changed,

[Mesa-dev] [PATCH] drivers/dri/i965: add missing #include

2018-06-12 Thread Ross Burton
brw_bufmgr.h uses time_t without include time.h, so the build fails under musl. --- src/mesa/drivers/dri/i965/brw_bufmgr.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mesa/drivers/dri/i965/brw_bufmgr.h b/src/mesa/drivers/dri/i965/brw_bufmgr.h index 68f5e0c2c8..5c2702652b 100644 ---