From 5c59ec4d85326c6d8ba4c71af36d43162da6ba62 Mon Sep 17 00:00:00 2001 From: Valentine Burley Date: Mon, 9 Jun 2025 14:47:19 +0200 Subject: [PATCH] ci/skqp: Add missing include to fix compilation errors on Debian 13 Include to fix these compilation errors: ../../src/sksl/SkSLString.h:124:18: error: unknown type name 'uint32_t' 124 | String to_string(uint32_t value); | ^ ../../src/sksl/SkSLString.h:128:18: error: unknown type name 'uint64_t' 128 | String to_string(uint64_t value); | ^ Signed-off-by: Valentine Burley Part-of: --- .../patches/build-skqp_include_cstdint.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitlab-ci/container/patches/build-skqp_include_cstdint.patch diff --git a/.gitlab-ci/container/patches/build-skqp_include_cstdint.patch b/.gitlab-ci/container/patches/build-skqp_include_cstdint.patch new file mode 100644 index 00000000000..3c24b9bc4f7 --- /dev/null +++ b/.gitlab-ci/container/patches/build-skqp_include_cstdint.patch @@ -0,0 +1,12 @@ +diff --git a/src/sksl/SkSLString.h b/src/sksl/SkSLString.h +index b3e411e..257a1ed 100644 +--- a/src/sksl/SkSLString.h ++++ b/src/sksl/SkSLString.h +@@ -8,6 +8,7 @@ + #ifndef SKSL_STRING + #define SKSL_STRING + ++#include + #include + + #define SKSL_USE_STD_STRING