diff options
author | bertrand <Bertrand.Guiheneuf@aful.org> | 1999-08-25 05:01:10 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-08-25 05:01:10 +0800 |
commit | 6881fd1bf710f0ce0bd55f9975855bb23622077a (patch) | |
tree | b9a41edaab9742dbd6de39cf868b86905e6d26a7 /camel/Makefile.am | |
parent | 86159a122623b0ef936f60e5040981bf0ab5d74e (diff) | |
download | gsoc2013-evolution-6881fd1bf710f0ce0bd55f9975855bb23622077a.tar gsoc2013-evolution-6881fd1bf710f0ce0bd55f9975855bb23622077a.tar.gz gsoc2013-evolution-6881fd1bf710f0ce0bd55f9975855bb23622077a.tar.bz2 gsoc2013-evolution-6881fd1bf710f0ce0bd55f9975855bb23622077a.tar.lz gsoc2013-evolution-6881fd1bf710f0ce0bd55f9975855bb23622077a.tar.xz gsoc2013-evolution-6881fd1bf710f0ce0bd55f9975855bb23622077a.tar.zst gsoc2013-evolution-6881fd1bf710f0ce0bd55f9975855bb23622077a.zip |
new class. Will handle all sort of information media (Mime mail messages,
1999-08-24 bertrand <Bertrand.Guiheneuf@aful.org>
* camel/camel-medium.c (camel_medium_class_init):
new class. Will handle all sort of information media
(Mime mail messages, Lotus Notes mail messages,
postit notes, faxes, who knows .... :)
CamelMimePart will inherit from it.
* camel/camel-mime-part.c (_set_disposition):
(_set_description):
description and disposition parameters are now const.
* camel/gmime-content-field.c (gmime_content_field_free): added
assertion code.
* camel/providers/MH/camel-mh-folder.c (_get_message):
uses buffered stream.
* camel/camel-stream-buffered-fs.c:
new stream to accelerate file ops.
Thanks to jwz, I've decided to add a level of abstraction to Camel.
In the future, it should be able to handle other mail systems, but
also non-mail information vehicles.
Enough for today. Roller time!
svn path=/trunk/; revision=1140
Diffstat (limited to 'camel/Makefile.am')
-rw-r--r-- | camel/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/camel/Makefile.am b/camel/Makefile.am index 5f23d2ee9c..c6860a6845 100644 --- a/camel/Makefile.am +++ b/camel/Makefile.am @@ -17,6 +17,7 @@ libcamel_la_SOURCES = \ camel-data-wrapper.c \ camel-simple-data-wrapper.c \ camel-folder.c \ + camel-medium.c \ camel-mime-body-part.c \ camel-mime-message.c \ camel-mime-part.c \ @@ -26,6 +27,7 @@ libcamel_la_SOURCES = \ camel-session.c \ camel-store.c \ camel-stream.c \ + camel-stream-buffered-fs.c \ camel-stream-fs.c \ camel-stream-mem.c \ data-wrapper-repository.c \ @@ -43,6 +45,7 @@ libcamelinclude_HEADERS = \ camel-simple-data-wrapper.h \ camel-folder.h \ camel-mime-body-part.h \ + camel-medium.h \ camel-mime-message.h \ camel-mime-part.h \ camel-multipart.h \ @@ -51,6 +54,7 @@ libcamelinclude_HEADERS = \ camel-session.h \ camel-store.h \ camel-stream.h \ + camel-stream-buffered-fs.h \ camel-stream-fs.h \ camel-stream-mem.h \ data-wrapper-repository.h \ |