diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2009-01-28 12:58:04 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2009-01-28 12:58:04 +0800 |
commit | ac738129f5a7a2f4fad720cc7f70fc5c0a8ddd41 (patch) | |
tree | db93f38c0fdf7fd9b1baf610ff052d3330aec390 /plugins | |
parent | 402ec23cc4db1c7e3ba3f329a6f185d08f73bdcd (diff) | |
download | gsoc2013-evolution-ac738129f5a7a2f4fad720cc7f70fc5c0a8ddd41.tar.gz gsoc2013-evolution-ac738129f5a7a2f4fad720cc7f70fc5c0a8ddd41.tar.zst gsoc2013-evolution-ac738129f5a7a2f4fad720cc7f70fc5c0a8ddd41.zip |
Include <mono/metadata/threads.h> to fix an implicit-function-declaration compiler warning.
svn path=/trunk/; revision=37144
Diffstat (limited to 'plugins')
-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) |