aboutsummaryrefslogtreecommitdiffstats
path: root/modules/plugin-mono
Commit message (Collapse)AuthorAgeFilesLines
* Coding style and whitespace cleanup.Matthew Barnes2012-02-201-2/+5
|
* Simplify library dependency flags.Matthew Barnes2011-10-051-2/+2
| | | | | | | | | We have a confusing array of nearly-identical CFLAGS/LIBS definitions in configure.ac. Time to simplify. Instead let's just have one definition that includes all the libraries provided by Evolution-Data-Server (incl. Camel). That, in combination with GNOME_PLATFORM, gives us most of what we need for compliation and linking, and we can sprinkle definitions for additional library dependencies in Makefile.am's as needed.
* Coding style and whitespace cleanup.Matthew Barnes2011-09-041-9/+11
|
* plugin-mono: Remove Camel.cs and Evolution.csMatthew Barnes2011-08-192-1368/+0
| | | | | | These files are hopelessly out of date, and don't appear to be used for anything anyway. The only sustainable way to provide language bindings for Evolution is to generate them through gobject-introspection.
* Prefer g_seekable_seek() over camel_stream_reset().Matthew Barnes2011-07-051-6/+0
| | | | | | | | | When a stream is obviously a file or memory stream (both of which implement the GSeekable interface), use g_seekable_seek() instead of camel_stream_reset(). This is helping me discover if it's safe to remove camel_stream_reset(). We want to eventually move to GIO streams, which have no reset method.
* Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-05-272-0/+6
|
* Coding style and whitespace cleanup.Matthew Barnes2011-05-221-1/+3
|
* Whitespace and coding style cleanups.Matthew Barnes2011-05-081-1/+2
|
* Coding style and whitespace cleanup.Matthew Barnes2011-03-061-1/+2
|
* Bug #614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedlyMilan Crha2011-02-251-5/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2010-08-291-1/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2010-05-271-1/+1
|
* Bug 576165 - SIGSEGV in e_plugin_mono_register_type (bnc)Chenthill Palanisamy2010-05-261-3/+5
|
* Stop relying on CamelObject meta-data.Matthew Barnes2010-04-011-62/+0
|
* Coding style and whitespace cleanup.Matthew Barnes2010-02-081-2/+5
|
* Bug 596848 - Use per-target CPPFLAGS in automake filesH.Habighorst2009-10-011-3/+4
|
* Simplify EPlugin loading at startup.Matthew Barnes2009-08-306-0/+1829
- Require all EPlugin and EPluginHook subtypes be registered before loading plugins. This drastically simplifies the EPlugin/EPluginHook negotiation. - Turn most EPluginHook subtypes into GTypeModules and register their types from an e_module_load() function (does not include shell hooks). - Convert EPluginLib and the Mono and Python bindings to GTypeModules and register their types from an e_module_load() function, and kill EPluginTypeHook.