d3dc3d4d64
- Add ebc4de4bfe34d6c5f2e27da47f5d62e4de0394fd.patch: Fix build with poppler 21.11.0, patch from upstream git. OBS-URL: https://build.opensuse.org/request/show/933308 OBS-URL: https://build.opensuse.org/package/show/graphics/inkscape?expand=0&rev=81
31 lines
1.0 KiB
Diff
31 lines
1.0 KiB
Diff
From ebc4de4bfe34d6c5f2e27da47f5d62e4de0394fd Mon Sep 17 00:00:00 2001
|
|
From: Evangelos Foutras <evangelos@foutrelis.com>
|
|
Date: Mon, 1 Nov 2021 21:45:38 +0200
|
|
Subject: [PATCH] Fix build with poppler 21.11.0
|
|
|
|
GfxFont::tag is now of type std::string instead of GooString *.
|
|
(cherry picked from commit 5724c21b9cb7b6176a7b36ca24068b148c817e82)
|
|
---
|
|
src/extension/internal/pdfinput/pdf-parser.cpp | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/src/extension/internal/pdfinput/pdf-parser.cpp b/src/extension/internal/pdfinput/pdf-parser.cpp
|
|
index e3d04d544b..feecefa043 100644
|
|
--- a/src/extension/internal/pdfinput/pdf-parser.cpp
|
|
+++ b/src/extension/internal/pdfinput/pdf-parser.cpp
|
|
@@ -2169,7 +2169,11 @@ void PdfParser::opSetFont(Object args[], int /*numArgs*/)
|
|
}
|
|
if (printCommands) {
|
|
printf(" font: tag=%s name='%s' %g\n",
|
|
+#if POPPLER_CHECK_VERSION(21,11,0)
|
|
+ font->getTag().c_str(),
|
|
+#else
|
|
font->getTag()->getCString(),
|
|
+#endif
|
|
font->getName() ? font->getName()->getCString() : "???",
|
|
args[1].getNum());
|
|
fflush(stdout);
|
|
--
|
|
GitLab
|
|
|