diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-04-03 04:41:47 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-04-03 04:59:20 +0800 |
commit | fabb6b035c40673e7c263040db323d6b7607606e (patch) | |
tree | 9a8e69eb428a4e61c88c5fb998c7a46676c09e06 /plugins/pst-import | |
parent | 6ea092ac02df94ea04d471b0e49d833cb374d655 (diff) | |
download | gsoc2013-evolution-fabb6b035c40673e7c263040db323d6b7607606e.tar.gz gsoc2013-evolution-fabb6b035c40673e7c263040db323d6b7607606e.tar.zst gsoc2013-evolution-fabb6b035c40673e7c263040db323d6b7607606e.zip |
Only #include Camel's top-level header.
Diffstat (limited to 'plugins/pst-import')
-rw-r--r-- | plugins/pst-import/Makefile.am | 6 | ||||
-rw-r--r-- | plugins/pst-import/pst-importer.c | 10 |
2 files changed, 4 insertions, 12 deletions
diff --git a/plugins/pst-import/Makefile.am b/plugins/pst-import/Makefile.am index 68c8a19264..0c6c89b5b9 100644 --- a/plugins/pst-import/Makefile.am +++ b/plugins/pst-import/Makefile.am @@ -22,7 +22,8 @@ liborg_gnome_pst_import_la_CPPFLAGS = \ $(GNOME_PLATFORM_CFLAGS) \ $(EVOLUTION_CFLAGS) \ $(EVOLUTION_CALENDAR_CFLAGS) \ - $(LIBPST_CFLAGS) + $(LIBPST_CFLAGS) \ + $(CAMEL_CFLAGS) liborg_gnome_pst_import_la_SOURCES = pst-importer.c @@ -35,7 +36,8 @@ liborg_gnome_pst_import_la_LIBADD = \ $(EVOLUTION_CALENDAR_LIBS) \ $(EVOLUTION_MAIL_LIBS) \ $(GNOME_PLATFORM_LIBS) \ - $(LIBPST_LIBS) + $(LIBPST_LIBS) \ + $(CAMEL_LIBS) EXTRA_DIST = org-gnome-pst-import.eplug.xml diff --git a/plugins/pst-import/pst-importer.c b/plugins/pst-import/pst-importer.c index fa0b61e993..9def7b9fc4 100644 --- a/plugins/pst-import/pst-importer.c +++ b/plugins/pst-import/pst-importer.c @@ -52,16 +52,6 @@ #include <libedataserver/e-data-server-util.h> #include <libedataserverui/e-source-selector-dialog.h> -#include <camel/camel-folder.h> -#include <camel/camel-store.h> -#include <camel/camel-exception.h> -#include <camel/camel-mime-message.h> -#include <camel/camel-multipart.h> -#include <camel/camel-data-wrapper.h> -#include <camel/camel-stream-mem.h> -#include <camel/camel-stream-fs.h> -#include <camel/camel-file-utils.h> - #include <mail/e-mail-local.h> #include <mail/mail-mt.h> #include <mail/mail-tools.h> |