From 0f402858fd243009d7f5c7cc304548add160e62f Mon Sep 17 00:00:00 2001 From: "W. Michael Petullo" Date: Tue, 8 Jul 2025 06:57:47 -0500 Subject: [PATCH] mesa: add dependency on libatomic when building for on mips Fix build errors on the noted platforms. Builds were failing with: Package libmesa-amd is missing dependencies for the following libraries: libatomic.so.1 Signed-off-by: W. Michael Petullo Signed-off-by: Daniel Golle --- libs/mesa/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/mesa/Makefile b/libs/mesa/Makefile index f4f2129..2d3b2f6 100644 --- a/libs/mesa/Makefile +++ b/libs/mesa/Makefile @@ -64,7 +64,7 @@ define Package/mesa/Default SECTION:=libs CATEGORY:=Libraries SUBMENU:=Video - DEPENDS:=+powerpc:libatomic + DEPENDS:=+(powerpc||mips||mipsel):libatomic TITLE:=Mesa3D URL:=https://www.mesa3d.org endef -- 2.30.2