From f73755ccd5c64a28435e434f6fc3a34d9c9e759a Mon Sep 17 00:00:00 2001 From: vasilito Date: Fri, 24 Jul 2026 16:45:34 +0900 Subject: [PATCH] mesa: CLOCK_MONOTONIC_RAW=4 (real Linux value, not alias) Aliasing CLOCK_MONOTONIC_RAW to CLOCK_MONOTONIC created a duplicate case value in wsi_common_wayland.c (switch has both). Use the real Linux clockid 4 so the value is distinct and the switch compiles. --- local/recipes/libs/mesa/recipe.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local/recipes/libs/mesa/recipe.toml b/local/recipes/libs/mesa/recipe.toml index 2f9c026e2b..e4844c23c1 100644 --- a/local/recipes/libs/mesa/recipe.toml +++ b/local/recipes/libs/mesa/recipe.toml @@ -96,7 +96,7 @@ cookbook_meson \ -Dplatforms=wayland \ -Degl-native-platform=surfaceless \ -Dshader-cache=disabled \ - -Dc_args="['-include','alloca.h','-DCLOCK_MONOTONIC_RAW=CLOCK_MONOTONIC','-Wno-error=implicit-function-declaration','-Wno-error=missing-prototypes','-Wno-error=return-type','-Wno-error=empty-body','-Wno-error=incompatible-pointer-types','-Wno-error=int-conversion','-Wno-error=format','-Wno-error','-std=gnu11','-Dstatic_assert=_Static_assert']" \ + -Dc_args="['-include','alloca.h','-DCLOCK_MONOTONIC_RAW=4','-Wno-error=implicit-function-declaration','-Wno-error=missing-prototypes','-Wno-error=return-type','-Wno-error=empty-body','-Wno-error=incompatible-pointer-types','-Wno-error=int-conversion','-Wno-error=format','-Wno-error','-std=gnu11','-Dstatic_assert=_Static_assert']" \ -Dcpp_args="['-include','alloca.h','-Wno-error=implicit-function-declaration','-Wno-error=missing-prototypes','-Wno-error=return-type','-Wno-error=empty-body','-Wno-error=incompatible-pointer-types','-Wno-error=int-conversion','-Wno-error=format','-Wno-error']" \ -Dvulkan-drivers=swrast \ -Dshared-glapi=enabled