summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLog.pre-2-104
-rw-r--r--ChangeLog.pre-2-44
-rw-r--r--ChangeLog.pre-2-64
-rw-r--r--ChangeLog.pre-2-84
-rw-r--r--gdk-pixbuf/gdk-pixbuf-io.c7
6 files changed, 26 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 58816e2e4c..df276379b7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Jan 9 11:58:47 2004 Manish Singh <yosh@gimp.org>
+
+ * gdk-pixbuf/gdk-pixbuf-io.c: #include <unistd.h> for unlink()
+
Fri Jan 9 15:28:21 GMT 2004 Tony Gale <gale@gtk.org>
* docs/faq/gtk-faq.sgml: update GtkEntry filter code example
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 58816e2e4c..df276379b7 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,7 @@
+Fri Jan 9 11:58:47 2004 Manish Singh <yosh@gimp.org>
+
+ * gdk-pixbuf/gdk-pixbuf-io.c: #include <unistd.h> for unlink()
+
Fri Jan 9 15:28:21 GMT 2004 Tony Gale <gale@gtk.org>
* docs/faq/gtk-faq.sgml: update GtkEntry filter code example
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index 58816e2e4c..df276379b7 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -1,3 +1,7 @@
+Fri Jan 9 11:58:47 2004 Manish Singh <yosh@gimp.org>
+
+ * gdk-pixbuf/gdk-pixbuf-io.c: #include <unistd.h> for unlink()
+
Fri Jan 9 15:28:21 GMT 2004 Tony Gale <gale@gtk.org>
* docs/faq/gtk-faq.sgml: update GtkEntry filter code example
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 58816e2e4c..df276379b7 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,3 +1,7 @@
+Fri Jan 9 11:58:47 2004 Manish Singh <yosh@gimp.org>
+
+ * gdk-pixbuf/gdk-pixbuf-io.c: #include <unistd.h> for unlink()
+
Fri Jan 9 15:28:21 GMT 2004 Tony Gale <gale@gtk.org>
* docs/faq/gtk-faq.sgml: update GtkEntry filter code example
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 58816e2e4c..df276379b7 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,3 +1,7 @@
+Fri Jan 9 11:58:47 2004 Manish Singh <yosh@gimp.org>
+
+ * gdk-pixbuf/gdk-pixbuf-io.c: #include <unistd.h> for unlink()
+
Fri Jan 9 15:28:21 GMT 2004 Tony Gale <gale@gtk.org>
* docs/faq/gtk-faq.sgml: update GtkEntry filter code example
diff --git a/gdk-pixbuf/gdk-pixbuf-io.c b/gdk-pixbuf/gdk-pixbuf-io.c
index 3b7c1da8ec..11abe65dbe 100644
--- a/gdk-pixbuf/gdk-pixbuf-io.c
+++ b/gdk-pixbuf/gdk-pixbuf-io.c
@@ -22,12 +22,17 @@
* Boston, MA 02111-1307, USA.
*/
-#include <config.h>
+#include "config.h"
+
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <glib.h>
#include <errno.h>
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
+
#include "gdk-pixbuf-private.h"
#include "gdk-pixbuf-io.h"