File woff2-Fix-uint8_t-undefined-with-GCC-15.patch of Package libqt5-qtwebkit
From 7ac968ba2ec9b8bfa4f9043874ef05d5d5a07889 Mon Sep 17 00:00:00 2001 From: Alexander Lucas <raedr7n@gmail.com> Date: Mon, 16 Jun 2025 09:23:33 -0400 Subject: [PATCH] Fix `uint8_t` undefined with GCC 15. --- include/woff2/output.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/ThirdParty/woff2/include/woff2/output.h b/Source/ThirdParty/woff2/include/woff2/output.h index dc78ccf..9e85007 100644 --- a/Source/ThirdParty/woff2/include/woff2/output.h +++ b/Source/ThirdParty/woff2/include/woff2/output.h @@ -11,6 +11,7 @@ #include <algorithm> #include <cstring> +#include <cstdint> #include <memory> #include <string>