Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog10
-rw-r--r--backend/impress/zip.c2
-rw-r--r--backend/ps/ps-interpreter.c2
3 files changed, 14 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 060e3a6..6ce7933 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
2007-05-14 Carlos Garcia Campos <carlosgc@gnome.org>
+ * backend/impress/zip.c:
+ Add missing ulong definition.
+
+ * backend/ps/ps-interpreter.c:
+ Add missing headers.
+
+ Fix compilation on FreeBSD. Patch by Roy Marples. Fixes bug #438277.
+
+2007-05-14 Carlos Garcia Campos <carlosgc@gnome.org>
+
* backend/pdf/ev-poppler.cc: (pdf_document_dispose):
Add missing call to parent class dispose method.
diff --git a/backend/impress/zip.c b/backend/impress/zip.c
index 4b179b5..7143aa1 100644
--- a/backend/impress/zip.c
+++ b/backend/impress/zip.c
@@ -9,6 +9,8 @@
#include <zlib.h>
#define _(x) x
+typedef unsigned long ulong;
+
enum {
ZIP_OK = 0,
ZIP_NOMEM,
diff --git a/backend/ps/ps-interpreter.c b/backend/ps/ps-interpreter.c
index 55f55d4..b17af85 100644
--- a/backend/ps/ps-interpreter.c
+++ b/backend/ps/ps-interpreter.c
@@ -28,6 +28,8 @@
#include <gdk/gdkx.h>
#include <string.h>
#include <stdlib.h>
+#include <sys/types.h>
+#include <signal.h>
#include <sys/wait.h>
#include <errno.h>