aboutsummaryrefslogtreecommitdiffstats
path: root/modules/composer-autosave/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* Simplify library dependency flags.Matthew Barnes2011-10-051-4/+6
| | | | | | | | | 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.
* Add missing linker flag to composer-autosave module.Matthew Barnes2010-09-111-0/+1
|
* Convert composer autosave to an EExtension.Matthew Barnes2010-09-031-0/+28
Given the way the autosave feature was awkwardly bolted on to the composer, an EExtension seemed like a natural fit. And it helped clean up some object lifecycle hacks (and bugs). What we have now is a new module consisting of two EExtensions: EComposerAutosave extends EMsgComposer and determines when to kick off an asynchronous autosave operation. EComposerRegistry extends EShell and offers to restore orphaned autosave files on startup (which is also asynchronous now). e-autosave-utils.c holds the actual asynchronous functions and a few other miscellaneous utility functions. Source code for the new module lives in /modules/composer-autosave.