]> 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 11:00:39 +0000 (11:00 +0000)
committerCarlos Garcia Campos <carlosgc@src.gnome.org>
Mon, 14 May 2007 11:00:39 +0000 (11:00 +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=/branches/gnome-2-18/; revision=2456

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

index 98bc09384e87ae79d910bdd30eb0510c242e7aa5..cb1a0e97ca15db782ad5d581a01ef1231b0a5a87 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>