Make poppler check require poppler >= 0.4.1.

This commit is contained in:
Carl Worth 2005-12-15 08:58:08 +00:00
parent 88615148ca
commit 11d20940b2
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2005-12-15 Carl Worth <cworth@cworth.org>
* configure.in: Make poppler check require poppler >= 0.4.1.
2005-12-14 Stuart Parmenter <pavlov@pavlov.net>
* test/cairo-test.c: #define access _access and
#define F_OK to 0 on for MSVC

View file

@ -442,7 +442,7 @@ AM_CONDITIONAL(CAIRO_HAS_PDF_SURFACE, test "x$use_pdf" = "xyes")
if test "x$use_pdf" = "xyes"; then
PDF_SURFACE_FEATURE="#define CAIRO_HAS_PDF_SURFACE 1"
PDF_LIBS=-lz
PKG_CHECK_MODULES(POPPLER, poppler-glib pango gtk+-2.0, [test_pdf=yes], [test_pdf=no])
PKG_CHECK_MODULES(POPPLER, poppler-glib >= 0.4.1 pango gtk+-2.0, [test_pdf=yes], [test_pdf=no])
if test "x$test_pdf" = "xyes"; then
AC_DEFINE([CAIRO_CAN_TEST_PDF_SURFACE], 1, [Define to 1 if the PDF backend can be tested (need poppler and other dependencies for pdf2png)])
else