Blame SOURCES/0001-Revert-Bump-poppler-requirements-to-0.33.0.patch

b83518
From 22b047c3db84a34fc5fb5076474640bcd3917c73 Mon Sep 17 00:00:00 2001
b83518
From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= <caolanm@redhat.com>
b83518
Date: Fri, 17 Feb 2017 09:28:18 +0000
b83518
Subject: [PATCH] Revert "Bump poppler requirements to 0.33.0"
b83518
b83518
This reverts commit 5a4912bdbbf3c8000e77a093cf366276eeb56283.
b83518
---
b83518
 backend/pdf/ev-poppler.cc | 4 ++++
b83518
 configure.ac              | 7 ++++++-
b83518
 2 files changed, 10 insertions(+), 1 deletion(-)
b83518
b83518
diff --git a/backend/pdf/ev-poppler.cc b/backend/pdf/ev-poppler.cc
b83518
index 214094f..f3a6510 100644
b83518
--- a/backend/pdf/ev-poppler.cc
b83518
+++ b/backend/pdf/ev-poppler.cc
b83518
@@ -3508,7 +3508,11 @@ pdf_document_annotations_save_annotation (EvDocumentAnnotations *document_annota
b83518
 			poppler_rect.y2 = height - ev_rect.y1;
b83518
 
b83518
 			if (poppler_annot_markup_has_popup (markup))
b83518
+#ifdef HAVE_POPPLER_ANNOT_MARKUP_SET_POPUP_RECTANGLE
b83518
 				poppler_annot_markup_set_popup_rectangle (markup, &poppler_rect);
b83518
+#else
b83518
+			        poppler_annot_markup_set_popup (markup, &poppler_rect);
b83518
+#endif
b83518
 			else
b83518
 				poppler_annot_markup_set_popup (markup, &poppler_rect);
b83518
 		}
b83518
diff --git a/configure.ac b/configure.ac
b83518
index 23a390f..a01392a 100644
b83518
--- a/configure.ac
b83518
+++ b/configure.ac
b83518
@@ -536,7 +536,7 @@ AC_ARG_ENABLE([pdf],
b83518
   [enable_pdf=yes])
b83518
 
b83518
 if test "x$enable_pdf" = "xyes"; then
b83518
-    POPPLER_REQUIRED=0.33.0
b83518
+    POPPLER_REQUIRED=0.24.0
b83518
     PKG_CHECK_MODULES(POPPLER, poppler-glib >= $POPPLER_REQUIRED libxml-2.0 >= $LIBXML_REQUIRED,enable_pdf=yes,enable_pdf=no)
b83518
 
b83518
     if test "x$enable_pdf" = "xyes"; then
b83518
@@ -549,6 +549,11 @@ if test "x$enable_pdf" = "xyes"; then
b83518
 	    if test x$enable_cairo_ps = xyes; then
b83518
 	            AC_DEFINE([HAVE_CAIRO_PS], [1], [defined if cairo-ps is available])
b83518
             fi
b83518
+
b83518
+            evince_save_LIBS=$LIBS
b83518
+            LIBS="$LIBS $POPPLER_LIBS"
b83518
+            AC_CHECK_FUNCS(poppler_annot_markup_set_popup_rectangle)
b83518
+            LIBS=$evince_save_LIBS
b83518
     else
b83518
 	    AC_MSG_ERROR("PDF support is disabled since poppler-glib library version $POPPLER_REQUIRED or newer not found")
b83518
     fi 
b83518
-- 
b83518
2.9.3
b83518