vcpkg/ports/poppler/private-namespace.patch
Kai Pastor 187b695031
[poppler] Fix poppler/paraview name clash (#35472)
Cherry-picked from #35437:
Add a test port which covers non-default features of `gdal`. 
Fix duplicate symbol definition in poppler and paraview found by the
test-port.
(https://github.com/microsoft/vcpkg/pull/35437#issuecomment-1837431578.
paraview using vtk using gdal using poppler.)
Disallow cascaded failure of gdal.

---------

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2024-03-05 23:47:04 -08:00

51 lines
1.1 KiB
Diff

diff --git a/poppler/Gfx.h b/poppler/Gfx.h
index 81a620b..ecfb449 100644
--- a/poppler/Gfx.h
+++ b/poppler/Gfx.h
@@ -48,7 +48,10 @@ class PDFDoc;
class XRef;
class Array;
class Stream;
+namespace poppler_private {
class Parser;
+}
+using namespace poppler_private;
class Dict;
class Function;
class OutputDev;
diff --git a/poppler/Parser.h b/poppler/Parser.h
index b379b67..c3d85bd 100644
--- a/poppler/Parser.h
+++ b/poppler/Parser.h
@@ -33,6 +33,7 @@
// Parser
//------------------------------------------------------------------------
+namespace poppler_private {
class POPPLER_PRIVATE_EXPORT Parser
{
public:
@@ -72,5 +73,7 @@ private:
void shift(int objNum = -1);
void shift(const char *cmdA, int objNum);
};
+}
+using namespace poppler_private;
#endif
diff --git a/poppler/XRef.h b/poppler/XRef.h
index e2b2ca8..7d6acbb 100644
--- a/poppler/XRef.h
+++ b/poppler/XRef.h
@@ -46,7 +46,10 @@
class Dict;
class Stream;
+namespace poppler_private {
class Parser;
+}
+using namespace poppler_private;
class ObjectStream;
//------------------------------------------------------------------------