mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
sci-libs/gdal: Fix build with app-text/poppler-0.83.0
Closes: https://bugs.gentoo.org/703790 Package-Manager: Portage-2.3.83, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
27
sci-libs/gdal/files/gdal-2.4.1-poppler-0.83-1.patch
Normal file
27
sci-libs/gdal/files/gdal-2.4.1-poppler-0.83-1.patch
Normal file
@@ -0,0 +1,27 @@
|
||||
From 1f8fa16f58cfe0364099ddad0e1d86522d8de41a Mon Sep 17 00:00:00 2001
|
||||
From: Even Rouault <even.rouault@spatialys.com>
|
||||
Date: Wed, 13 Nov 2019 14:07:22 +0100
|
||||
Subject: [PATCH] PDF: fix build against Poppler 0.83.0dev
|
||||
|
||||
---
|
||||
gdal/frmts/pdf/pdfdataset.cpp | 6 ++++++
|
||||
1 file changed, 6 insertions(+)
|
||||
|
||||
diff --git a/frmts/pdf/pdfdataset.cpp b/frmts/pdf/pdfdataset.cpp
|
||||
index 8f944c40d30..88017953de5 100644
|
||||
--- a/frmts/pdf/pdfdataset.cpp
|
||||
+++ b/frmts/pdf/pdfdataset.cpp
|
||||
@@ -4267,7 +4267,13 @@ PDFDataset *PDFDataset::Open( GDALOpenInfo * poOpenInfo )
|
||||
CPLMutexHolderD(&hGlobalParamsMutex);
|
||||
/* poppler global variable */
|
||||
if (globalParams == nullptr)
|
||||
+ {
|
||||
+#if POPPLER_MAJOR_VERSION >= 1 || POPPLER_MINOR_VERSION >= 83
|
||||
+ globalParams.reset(new GlobalParams());
|
||||
+#else
|
||||
globalParams = new GlobalParams();
|
||||
+#endif
|
||||
+ }
|
||||
|
||||
globalParams->setPrintCommands(CPLTestBool(
|
||||
CPLGetConfigOption("GDAL_PDF_PRINT_COMMANDS", "FALSE")));
|
||||
42
sci-libs/gdal/files/gdal-2.4.1-poppler-0.83-2.patch
Normal file
42
sci-libs/gdal/files/gdal-2.4.1-poppler-0.83-2.patch
Normal file
@@ -0,0 +1,42 @@
|
||||
From 7318576fc7037412b755f038f8148f2d299587aa Mon Sep 17 00:00:00 2001
|
||||
From: Even Rouault <even.rouault@spatialys.com>
|
||||
Date: Tue, 26 Nov 2019 14:33:32 +0100
|
||||
Subject: [PATCH] PDF: fix to build against latest Poppler master (0.83dev)
|
||||
|
||||
---
|
||||
gdal/frmts/pdf/pdfio.cpp | 3 +++
|
||||
gdal/frmts/pdf/pdfio.h | 7 ++++++-
|
||||
2 files changed, 9 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/frmts/pdf/pdfio.cpp b/frmts/pdf/pdfio.cpp
|
||||
index 917e92330ae..c0b9dad93cb 100644
|
||||
--- a/frmts/pdf/pdfio.cpp
|
||||
+++ b/frmts/pdf/pdfio.cpp
|
||||
@@ -170,6 +170,9 @@ getStart_ret_type VSIPDFFileStream::getStart()
|
||||
/************************************************************************/
|
||||
|
||||
StreamKind VSIPDFFileStream::getKind()
|
||||
+#if POPPLER_MAJOR_VERSION >= 1 || POPPLER_MINOR_VERSION >= 83
|
||||
+ const
|
||||
+#endif
|
||||
{
|
||||
return strFile;
|
||||
}
|
||||
diff --git a/frmts/pdf/pdfio.h b/frmts/pdf/pdfio.h
|
||||
index aa34ab7210d..23344d33f77 100644
|
||||
--- a/frmts/pdf/pdfio.h
|
||||
+++ b/frmts/pdf/pdfio.h
|
||||
@@ -81,7 +81,12 @@ class VSIPDFFileStream final: public BaseStream
|
||||
virtual void setPos(setPos_offset_type pos, int dir = 0) override;
|
||||
virtual void moveStart(moveStart_delta_type delta) override;
|
||||
|
||||
- virtual StreamKind getKind() override;
|
||||
+ virtual StreamKind getKind()
|
||||
+#if POPPLER_MAJOR_VERSION >= 1 || POPPLER_MINOR_VERSION >= 83
|
||||
+ const
|
||||
+#endif
|
||||
+ override;
|
||||
+
|
||||
virtual GooString *getFileName() override;
|
||||
|
||||
virtual int getChar() override;
|
||||
@@ -85,6 +85,7 @@ PATCHES=(
|
||||
"${FILESDIR}/${P}-poppler-0.76.patch"
|
||||
"${FILESDIR}/${P}-swig-4.patch" # bug 689110
|
||||
"${FILESDIR}/${P}-poppler-0.82.patch"
|
||||
"${FILESDIR}"/${P}-poppler-0.83-{1,2}.patch # bug 703790
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
|
||||
Reference in New Issue
Block a user