From f03eab9efc8cb8cf86e4966736c40ca543fe83ef Mon Sep 17 00:00:00 2001 From: Jonathan Gray Date: Mon, 18 Dec 2023 22:03:23 +1100 Subject: [PATCH] zink: put sysmacros.h include under #ifdef MAJOR_IN_SYSMACROS Fixes the build on OpenBSD, where major() is in sys/types and sys/sysmacros.h does not exist. Also include sys/mkdev.h if MAJOR_IN_MKDEV is defined. Fixes: 6d60115be7c ("zink: Fix enumerate devices when running compositor") Part-of: (cherry picked from commit 33eecafe757264ed58e33b87e010aacc6a376da8) --- .pick_status.json | 2 +- src/gallium/drivers/zink/zink_screen.c | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.pick_status.json b/.pick_status.json index cb50a26ae54..4f697626e3d 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -34,7 +34,7 @@ "description": "zink: put sysmacros.h include under #ifdef MAJOR_IN_SYSMACROS", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "6d60115be7cce87402f15ba01d81783dbf25f80a", "notes": null diff --git a/src/gallium/drivers/zink/zink_screen.c b/src/gallium/drivers/zink/zink_screen.c index f42f340657b..97af50f68c0 100644 --- a/src/gallium/drivers/zink/zink_screen.c +++ b/src/gallium/drivers/zink/zink_screen.c @@ -55,8 +55,13 @@ #include #include #include +#ifdef MAJOR_IN_MKDEV +#include +#endif +#ifdef MAJOR_IN_SYSMACROS #include #endif +#endif static int num_screens = 0; bool zink_tracing = false;