Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
pdf-unicode: for Poppler ≥ 0.62, include UnicodeMapFuncs.h.
Browse files Browse the repository at this point in the history
Fixes:

    pdf-unicode.cc:29:18: fatal error: UTF8.h: No such file or directory
  • Loading branch information
jwilk committed Dec 5, 2017
1 parent eca9c9b commit e263c43
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pdf-unicode.cc
Expand Up @@ -25,7 +25,9 @@

#include <CharTypes.h>
#include <PDFDocEncoding.h>
#if (POPPLER_VERSION < 2100) || (POPPLER_VERSION >= 2101)
#if POPPLER_VERSION >= 6200
#include <UnicodeMapFuncs.h>
#elif (POPPLER_VERSION < 2100) || (POPPLER_VERSION >= 2101)
#include <UTF8.h>
#endif
#if POPPLER_VERSION >= 2100
Expand Down

0 comments on commit e263c43

Please sign in to comment.