Changeset 1464
- Timestamp:
- 01/25/07 00:33:58
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/libtinymail-camel/camel-lite/camel/Makefile.am (modified) (2 diffs)
- trunk/libtinymail-camel/camel-lite/camel/camel-stream-gzip.c (added)
- trunk/libtinymail-camel/camel-lite/camel/camel-stream-gzip.h (added)
- trunk/libtinymail-camel/camel-lite/camel/camel-types.h (modified) (1 diff)
- trunk/libtinymail-camel/camel-lite/camel/camel.h (modified) (1 diff)
- trunk/tests/functional (modified) (1 prop)
- trunk/tests/functional/.svnignore (modified) (1 diff)
- trunk/tests/functional/Makefile.am (modified) (1 diff)
- trunk/tests/functional/anything.c (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r1463 r1464 1 2007-01-25 Philip Van Hoof <pvanhoof@gnome.org> 2 3 * Added a CamelStreamGZip which might someday be used to support the 4 COMPRESS capability of some LEMONADE-enabled IMAP servers. This new 5 type is experimental and not sufficiently tested for real use. 6 1 7 2007-01-24 Sergio Villar Senin <svillar@igalia.com> 2 8 trunk/libtinymail-camel/camel-lite/camel/Makefile.am
r1227 r1464 202 202 camel-stream-fs.c \ 203 203 camel-stream-mem.c \ 204 camel-stream-gzip.c \ 204 205 camel-stream-null.c \ 205 206 camel-stream.c \ … … 270 271 camel-stream-fs.h \ 271 272 camel-stream-mem.h \ 273 camel-stream-gzip.h \ 272 274 camel-stream-null.h \ 273 275 camel-stream-process.h \ trunk/libtinymail-camel/camel-lite/camel/camel-types.h
r1014 r1464 64 64 typedef struct _CamelStream CamelStream; 65 65 typedef struct _CamelStreamNull CamelStreamNull; 66 typedef struct _CamelStreamGZip CamelStreamGZip; 66 67 typedef struct _CamelStreamBuffer CamelStreamBuffer; 67 68 typedef struct _CamelStreamDataWrapper CamelStreamDataWrapper; trunk/libtinymail-camel/camel-lite/camel/camel.h
r1014 r1464 65 65 #include <camel/camel-stream-fs.h> 66 66 #include <camel/camel-stream-mem.h> 67 #include <camel/camel-stream-gzip.h> 67 68 #include <camel/camel-stream.h> 68 69 #include <camel/camel-transport.h> trunk/tests/functional
- Property svn:ignore changed from msg-sender msg-transfer folder-lister-async tags Makefile.in folder-lister .svnignore stamp-h1 config.h .libs .deps Makefile to anything msg-sender msg-transfer folder-lister-async tags Makefile.in folder-lister .svnignore stamp-h1 config.h .libs .deps Makefile
trunk/tests/functional/.svnignore
r1347 r1464 1 anything 1 2 msg-sender 2 3 msg-transfer trunk/tests/functional/Makefile.am
r1347 r1464 16 16 endif 17 17 18 bin_PROGRAMS = folder-lister folder-lister-async msg-transfer msg-sender 18 bin_PROGRAMS = folder-lister folder-lister-async msg-transfer msg-sender anything 19 20 anything_SOURCES = anything.c 21 anything_LDADD = \ 22 $(TINYMAIL_LIBS) $(LIBTINYMAIL_GNOME_DESKTOP_LIBS) \ 23 $(top_builddir)/libtinymail/libtinymail-$(API_VERSION).la \ 24 $(top_builddir)/libtinymailui/libtinymailui-$(API_VERSION).la \ 25 $(top_builddir)/libtinymailui-gtk/libtinymailui-gtk-$(API_VERSION).la \ 26 $(top_builddir)/libtinymail-camel/libtinymail-camel-$(API_VERSION).la \ 27 $(top_builddir)/tests/shared/libtestsshared.a 19 28 20 29 msg_sender_SOURCES = msg-sender.c
