]> www.fi.muni.cz Git - evince.git/commitdiff
Add missing ulong definition. Add missing headers. Fix compilation on
authorCarlos Garcia Campos <carlosgc@gnome.org>
Mon, 14 May 2007 10:50:58 +0000 (10:50 +0000)
committerCarlos Garcia Campos <carlosgc@src.gnome.org>
Mon, 14 May 2007 10:50:58 +0000 (10:50 +0000)
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.

svn path=/trunk/; revision=2454

ChangeLog
backend/impress/zip.c
backend/ps/ps-interpreter.c

index 060e3a642e2b31e3c8c1e44f37ed6f5df9f6abf9..6ce7933928c2046eff2b6a6284aca0662055b8c6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+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):
index 4b179b55ef900ad53d88e71d05aad159eb6e1cb6..7143aa1e32bdebc3669bdeb9287e11294102a669 100644 (file)
@@ -9,6 +9,8 @@
 #include <zlib.h>
 #define _(x) x
 
+typedef unsigned long ulong;
+
 enum {
        ZIP_OK = 0,
        ZIP_NOMEM,
index 55f55d4032f084fef37ef454621703fe4f3a7bd8..b17af854d53f0854d3301deac80c353c0376a25d 100644 (file)
@@ -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>