summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2009-02-20 15:15:08 +0000
committerJürg Billeter <juergbi@src.gnome.org>2009-02-20 15:15:08 +0000
commit5e7773353c5a13cb6b9f04fd81bf636cdbea647f (patch)
treefdd9bd0f264e5dd40c62bce0efd556c789b5bc43
parenta9a16ae3c6d46a614e08eb76fd72e583dee2b076 (diff)
downloadvala-5e7773353c5a13cb6b9f04fd81bf636cdbea647f.tar.gz
Include unistd.h to support compilation with
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 svn path=/trunk/; revision=2463
-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>