From 691936c46320ab18b889ddbd368beb845a95d674 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Campos Date: Fri, 14 Mar 2008 11:13:01 +0000 Subject: Fix build with poppler >= 0.7.2 2008-03-14 Carlos Garcia Campos * configure.ac: * backend/pdf/ev-poppler.cc: Fix build with poppler >= 0.7.2 svn path=/trunk/; revision=2965 --- (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 2f4b3b7..4b0ddda 100644 --- a/configure.ac +++ b/configure.ac @@ -218,6 +218,15 @@ if test "x$enable_pdf" = "xyes"; then AC_CHECK_FUNCS(poppler_page_get_image) LIBS=$evince_save_LIBS + POPPLER_MAJOR_VERSION=`$PKG_CONFIG --modversion poppler-glib | sed 's/0\.\([[0-9]]*\)\(\.\([[0-9]]*\)\)\?/\1/'` + POPPLER_MINOR_VERSION=`$PKG_CONFIG --modversion poppler-glib | sed 's/0\.\([[0-9]]*\)\(\.\([[0-9]]*\)\)\?/\3/'` + if test -z "$POPPLER_MINOR_VERSION"; then + POPPLER_MINOR_VERSION=0 + fi + + AC_DEFINE_UNQUOTED([POPPLER_MAJOR_VERSION], $POPPLER_MAJOR_VERSION, [Poppler major version number]) + AC_DEFINE_UNQUOTED([POPPLER_MINOR_VERSION], $POPPLER_MINOR_VERSION, [Poppler minor version number]) + PKG_CHECK_MODULES(CAIRO_PDF, cairo-pdf, enable_cairo_pdf=yes, enable_cairo_pdf=no) if test x$enable_cairo_pdf == xyes; then AC_DEFINE([HAVE_CAIRO_PDF], [1], [defined if cairo-pdf is available]) -- cgit v0.9.1