evince/0001-pdf-Fix-build-when-text_layout-is-not-available.patch
Matthias Clasen 13702b0487 fix the build
2010-06-29 13:31:44 +00:00

34 lines
1.0 KiB
Diff

From 9dd59f719ba098ef93aacf2e5e3d0974cfcd5b2c Mon Sep 17 00:00:00 2001
From: Carlos Garcia Campos <carlosgc@gnome.org>
Date: Tue, 29 Jun 2010 08:52:13 +0200
Subject: [PATCH] [pdf] Fix build when text_layout is not available
Fixes bug #623080.
---
backend/pdf/ev-poppler.cc | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/backend/pdf/ev-poppler.cc b/backend/pdf/ev-poppler.cc
index 91f5c2e..6e56423 100644
--- a/backend/pdf/ev-poppler.cc
+++ b/backend/pdf/ev-poppler.cc
@@ -2029,6 +2029,7 @@ pdf_document_text_get_text (EvDocumentText *selection,
&r);
}
+#ifdef HAVE_POPPLER_PAGE_GET_TEXT_LAYOUT
static gboolean
pdf_document_text_get_text_layout (EvDocumentText *selection,
EvPage *page,
@@ -2043,6 +2044,7 @@ pdf_document_text_get_text_layout (EvDocumentText *selection,
return poppler_page_get_text_layout (poppler_page, (PopplerRectangle **)areas, n_areas);
}
+#endif
static void
pdf_document_text_iface_init (EvDocumentTextInterface *iface)
--
1.7.1