1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-12-22 04:50:09 +00:00

Don't accept poppler 0.82.0. Compilation errors with versions newer than 0.81.0

This commit is contained in:
Vilius Sutkus 2020-01-24 00:38:05 +00:00
parent c5ff995daa
commit 882ed18fff

View File

@ -19,8 +19,8 @@ add_custom_target(dist
find_package(PkgConfig)
pkg_check_modules(POPPLER REQUIRED poppler>=0.25.0)
# Compilation errors with poppler versions newer than 0.81.0
pkg_check_modules(POPPLER REQUIRED poppler>=0.25.0 poppler<0.82.0)
include_directories(${POPPLER_INCLUDE_DIRS})
link_directories(${POPPLER_LIBRARY_DIRS})
set(PDF2HTMLEX_LIBS ${PDF2HTMLEX_LIBS} ${POPPLER_LIBRARIES})