Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac9
2 files changed, 11 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 28cadc4..020a576 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2008-04-08 Carlos Garcia Campos <carlosgc@gnome.org>
+ * configure.ac:
+
+ Fix build (again) when poppler version is 0.6
+
+2008-04-08 Carlos Garcia Campos <carlosgc@gnome.org>
+
* backend/djvu/djvu-links.c: (build_tree):
Make sure link title is a valid utf8 string. Fixes bug #526517.
diff --git a/configure.ac b/configure.ac
index 35bc728..3b25d38 100644
--- a/configure.ac
+++ b/configure.ac
@@ -224,11 +224,12 @@ 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-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2 /'`
- POPPLER_MINOR_VERSION=`$PKG_CONFIG --modversion poppler-glib | sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3 /'`
- if test -z "$POPPLER_MINOR_VERSION"; then
- POPPLER_MINOR_VERSION=0
+ poppler_version=`$PKG_CONFIG --modversion poppler-glib`
+ if test x$poppler_version = x0.6; then
+ poppler_version=0.6.0
fi
+ POPPLER_MAJOR_VERSION=`echo $poppler_version | sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2 /'`
+ POPPLER_MINOR_VERSION=`echo $poppler_version | sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3 /'`
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])