diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2021-11-24 16:06:11 +0100 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2021-11-26 10:03:04 +0100 |
commit | 8ae97ead49b31899c194e6086bd0e53be17da62e (patch) | |
tree | e532aeb0f7657e15725e63434e96b6e2c1ab6aa6 /sdext/source | |
parent | 18a66c788983115a37bb02112d3dba8935a4ce97 (diff) |
Drop support for poppler w/o cpp/poppler-version.h
Seems the first poppler including poppler-cpp.pc.in and also
cpp/poppler-version.h.in was 0.14.0.
So this also increases the minimal system poppler dependency from
* poppler 0.12.0 (Wed Sep 9, 2009)
to
* poppler 0.14.0 (Tue Jun 8, 2010)
Compiling the internal poppler, we're up-to-date anyway.
Change-Id: Iee07cfeb43f4320fd596c772eeb26662505d0daf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125778
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'sdext/source')
-rw-r--r-- | sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx index f087915d97b9..b34fad1ba90a 100644 --- a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx +++ b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx @@ -55,14 +55,7 @@ class GfxPath; class GfxFont; class PDFDoc; -#if HAVE_POPPLER_VERSION_H #include <cpp/poppler-version.h> -#else -#define POPPLER_VERSION "0.12.3" -#define POPPLER_VERSION_MAJOR 0 -#define POPPLER_VERSION_MINOR 12 -#define POPPLER_VERSION_MICRO 3 -#endif #define POPPLER_CHECK_VERSION(major,minor,micro) \ (POPPLER_VERSION_MAJOR > (major) || \ (POPPLER_VERSION_MAJOR == (major) && POPPLER_VERSION_MINOR > (minor)) || \ |