summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--THANKS1
-rw-r--r--gobject-introspection/scanner.c1
3 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f04a99ac0..b26319704 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2009-02-20 Jürg Billeter <j@bitron.ch>
+ * gobject-introspection/scanner.c:
+
+ Include unistd.h to support compilation with
+ -Werror-implicit-function-declaration, patch by Tobias Müller,
+ fixes bug 571544
+
+2009-02-20 Jürg Billeter <j@bitron.ch>
+
* vala/valascope.vala:
Add Scope.get_symbol_table method, patch by Abderrahim Kitouni
diff --git a/THANKS b/THANKS
index a4eee7823..21ac91150 100644
--- a/THANKS
+++ b/THANKS
@@ -78,6 +78,7 @@ Sebastian Pölsterl
Stéphan Kochen
Tai Chi Minh Ralph Eastwood
Thijs Vermeir
+Tobias Müller
Travis Watkins
Víctor Manuel Jáquez Leal
Vlad Grecescu
diff --git a/gobject-introspection/scanner.c b/gobject-introspection/scanner.c
index 95e4e81bd..43a8303e8 100644
--- a/gobject-introspection/scanner.c
+++ b/gobject-introspection/scanner.c
@@ -24,6 +24,7 @@
#include <string.h>
#include <stdlib.h>
+#include <unistd.h>
#include <ctype.h>
#include <errno.h>
#include <glib.h>