summaryrefslogtreecommitdiff
path: root/libre/cups-filters/goostring-constness.patch
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2018-09-09 19:52:12 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2018-09-09 19:52:12 -0500
commit7831e2f3c460b2faed5173bd2c99a7930f5d76f5 (patch)
tree35167b886b8d71ea5c2476aa792ac4c7bd493db6 /libre/cups-filters/goostring-constness.patch
parentcf5c5dfddad4bf5ef782559a66304bad44af73b0 (diff)
downloadabslibre-7831e2f3c460b2faed5173bd2c99a7930f5d76f5.tar.gz
abslibre-7831e2f3c460b2faed5173bd2c99a7930f5d76f5.tar.bz2
abslibre-7831e2f3c460b2faed5173bd2c99a7930f5d76f5.zip
cups-filters-1.21.2-1.parabola1: updating version
Diffstat (limited to 'libre/cups-filters/goostring-constness.patch')
-rw-r--r--libre/cups-filters/goostring-constness.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/libre/cups-filters/goostring-constness.patch b/libre/cups-filters/goostring-constness.patch
deleted file mode 100644
index ba0c365d7..000000000
--- a/libre/cups-filters/goostring-constness.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 07a0a423a8469a2dd6d7f64bb3b62ba6ac42cc28 Mon Sep 17 00:00:00 2001
-From: Lars Wendler <polynomial-c@gentoo.org>
-Date: Fri, 20 Jul 2018 15:20:11 +0200
-Subject: [PATCH] GooString needs to be const since >=poppler-0.64.0
-
-This only fails with >=poppler-0.67.0 but the change to const was done
-in 0.64.0
----
- filter/pdf.cxx | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/filter/pdf.cxx b/filter/pdf.cxx
-index 206ccf88..665eab09 100644
---- a/filter/pdf.cxx
-+++ b/filter/pdf.cxx
-@@ -734,6 +734,9 @@ extern "C" int pdf_fill_form(pdf_t *doc, opt_t *opt)
- }
-
- FormField *ff = fm_text->getField();
-+#if POPPLER_VERSION_MAJOR > 0 || POPPLER_VERSION_MINOR >= 64
-+ const
-+#endif
- GooString *field_name;
- field_name = ff->getFullyQualifiedName();
- if ( ! field_name )