summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@datenfreihafen.org>2012-05-31 14:05:38 +0000
committerStefan Schmidt <stefan@datenfreihafen.org>2012-05-31 14:05:38 +0000
commit31df1c9c7f0cc2a747efd0e8f8cb98cfd8c823b7 (patch)
treef85fee947b4728ae444e166b659ad0e3aad462b4
parent1d6358d92d908463eb43c4f08a7a1b27abcb2a9e (diff)
downloadevas_generic_loaders-31df1c9c7f0cc2a747efd0e8f8cb98cfd8c823b7.tar.gz
evas_generic_loaders/configure.ac: Extend lipoppler check to avoid 0.20 and upwards
libpoppler changed API with 0.20 and our code is not prepared for that. Thus make sure we only build the pdf loader when we find a working lib version. Thanks goes to vtorri for autoconf consulting SVN revision: 71584
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index c2b0573..a0a993d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -60,7 +60,7 @@ PKG_PROG_PKG_CONFIG
# Eina library
PKG_CHECK_MODULES(EINA, [eina >= 1.2.0])
-PKG_CHECK_MODULES([POPPLER], [poppler >= 0.12], [have_poppler="yes"], [have_poppler="no"])
+PKG_CHECK_MODULES([POPPLER], [poppler >= 0.12 poppler < 0.20], [have_poppler="yes"], [have_poppler="no"])
PKG_CHECK_MODULES([SPECTRE], [libspectre], [have_ps="yes"], [have_ps="no"])