Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/b208c60dddc639cfce333...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/b208c60dddc639cfce3333f...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/b208c60dddc639cfce3333f39...
The branch, master has been updated
via b208c60dddc639cfce3333f39ca542f34777407a (commit)
from 1c5a5207fb2056b58be7a27a5135f39228702260 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=b208c60dddc639cfce3...
commit b208c60dddc639cfce3333f39ca542f34777407a
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
Add missing include to gtk scaffolding
Without unistd access, close and unlink were not properly defined
diff --git a/gtk/scaffolding.c b/gtk/scaffolding.c
index 215fe1a..8f161a4 100644
--- a/gtk/scaffolding.c
+++ b/gtk/scaffolding.c
@@ -22,6 +22,7 @@
#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
+#include <unistd.h>
#include <gtk/gtk.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
-----------------------------------------------------------------------
Summary of changes:
gtk/scaffolding.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/gtk/scaffolding.c b/gtk/scaffolding.c
index 215fe1a..8f161a4 100644
--- a/gtk/scaffolding.c
+++ b/gtk/scaffolding.c
@@ -22,6 +22,7 @@
#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
+#include <unistd.h>
#include <gtk/gtk.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
--
NetSurf Browser