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--backend/ev-document-factory.c3
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a4d8056..a960679 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-01-08 Carlos Garcia Campos <carlosgc@gnome.org>
+
+ * backend/ev-document-factory.c:
+
+ Do not include ev-poppler.h when pdf is disabled.
+
2007-01-07 Carlos Garcia Campos <carlosgc@gnome.org>
* configure.ac:
diff --git a/backend/ev-document-factory.c b/backend/ev-document-factory.c
index 78be656..348cb80 100644
--- a/backend/ev-document-factory.c
+++ b/backend/ev-document-factory.c
@@ -25,8 +25,9 @@
#include "ev-document-factory.h"
/* The various document type backends: */
+#ifdef ENABLE_PDF
#include "ev-poppler.h"
-
+#endif
#ifdef ENABLE_PS
#include "ps-document.h"
#endif