From 55d1b4f64c0270f3eae3a088e3e205719850fe85 Mon Sep 17 00:00:00 2001 From: zlice Date: Mon, 30 Jun 2025 15:34:42 -0400 Subject: [PATCH] paps: fix gcc14 build const char ptr --- srcpkgs/paps/patches/gcc14.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 srcpkgs/paps/patches/gcc14.patch diff --git a/srcpkgs/paps/patches/gcc14.patch b/srcpkgs/paps/patches/gcc14.patch new file mode 100644 index 00000000000..187fa654595 --- /dev/null +++ b/srcpkgs/paps/patches/gcc14.patch @@ -0,0 +1,11 @@ +--- a/src/paps.cc ++++ b/src/paps.cc +@@ -1073,7 +1073,7 @@ + const char *text) + { + const char *p = text; +- char *next; ++ const char *next; + gunichar wc; + GList *result = nullptr; + const char *last_para = text;