diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2009-02-01 03:03:12 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2009-02-01 03:03:12 +0800 |
commit | fee5916b60c605ff5086d8fdc2a85c5ea21351f6 (patch) | |
tree | 4feaede1cf070448a32bd0ab846908e47747ceb7 /plugins/mono | |
parent | cd5ff486fb02451645f8b4b39608edca2da5e4a2 (diff) | |
download | gsoc2013-evolution-fee5916b60c605ff5086d8fdc2a85c5ea21351f6.tar.gz gsoc2013-evolution-fee5916b60c605ff5086d8fdc2a85c5ea21351f6.tar.zst gsoc2013-evolution-fee5916b60c605ff5086d8fdc2a85c5ea21351f6.zip |
Merge revisions 37108:37199 from trunk.
svn path=/branches/kill-bonobo/; revision=37200
Diffstat (limited to 'plugins/mono')
-rw-r--r-- | plugins/mono/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/mono/mono-plugin.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/plugins/mono/ChangeLog b/plugins/mono/ChangeLog index ff07e79a0b..45b669ec56 100644 --- a/plugins/mono/ChangeLog +++ b/plugins/mono/ChangeLog @@ -1,3 +1,8 @@ +2009-01-28 Suman Manjunath <msuman@novell.com> + + * mono-plugin.c: Include <mono/metadata/threads.h> to fix an implicit- + function-declaration compiler warning. + 2008-10-22 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #549025 diff --git a/plugins/mono/mono-plugin.c b/plugins/mono/mono-plugin.c index 5c5182e378..18b113c614 100644 --- a/plugins/mono/mono-plugin.c +++ b/plugins/mono/mono-plugin.c @@ -28,6 +28,7 @@ #include <mono/metadata/object.h> #include <mono/metadata/appdomain.h> #include <mono/metadata/assembly.h> +#include <mono/metadata/threads.h> #include <mono/jit/jit.h> #define d(x) (x) |