From bacbda92e1b1bff4689ad35beeba5d136dcc6dde Mon Sep 17 00:00:00 2001 From: Paul Cercueil Date: Sun, 30 Oct 2022 23:04:10 +0000 Subject: [PATCH] package/glmark2: add patch to fix GCC 12 build Add a patch cherry-picked from upstream to fix the build with GCC 12. Upstream commit is d1ca3f53c96dc8a4048b17dc16147a8fac782d4a. I don't know if it fixes any autobuilder errors, I noticed the bug when building locally. Signed-off-by: Paul Cercueil Signed-off-by: Yann E. MORIN --- ...ibmatrix-Add-missing-utility-include.patch | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 package/glmark2/0002-libmatrix-Add-missing-utility-include.patch diff --git a/package/glmark2/0002-libmatrix-Add-missing-utility-include.patch b/package/glmark2/0002-libmatrix-Add-missing-utility-include.patch new file mode 100644 index 0000000000..65b6183867 --- /dev/null +++ b/package/glmark2/0002-libmatrix-Add-missing-utility-include.patch @@ -0,0 +1,30 @@ +From d1ca3f53c96dc8a4048b17dc16147a8fac782d4a Mon Sep 17 00:00:00 2001 +From: Alexandros Frantzis +Date: Mon, 14 Feb 2022 13:54:09 +0200 +Subject: [PATCH] libmatrix: Add missing include + +Fixes compilation with GCC 12. + +Fixes #169 +[Paul: backport upstream d1ca3f53c96dc8a4048b17dc16147a8fac782d4a] +Signed-off-by: Paul Cercueil +--- + + src/libmatrix/program.h | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/libmatrix/program.h b/src/libmatrix/program.h +index f95b470..1c9de08 100644 +--- a/src/libmatrix/program.h ++++ b/src/libmatrix/program.h +@@ -15,6 +15,7 @@ + #include + #include + #include ++#include + #include "mat.h" + + // Simple shader container. Abstracts all of the OpenGL bits, but leaves +-- +2.35.1 +