Index: ChangeLog =================================================================== RCS file: /cvs/gnome/evolution/camel/ChangeLog,v retrieving revision 1.684 diff -r1.684 ChangeLog 0a1,34 > 2001-01-17 Not Zed <NotZed@Ximian.com> > > * camel-folder.c (free_summary): Call > camel_folder_summary_array_free() to do the work. > (get_summary): Use camel_folder_summary_array() to get the array > atomically. These fixes allow folder/test8 to work again, and fix > a sort of race where the summary size can change while we were > making a copy of it. > > * camel-folder-summary.c (camel_folder_summary_array): Get the > summary array atomically, so it can't contain empty records. > (camel_folder_summary_array_free): And free it. > > * tests/lib/camel-test.c (die): If we are verbose & in threads, > then goto sleep so we can debug. > > * tests/folder/test8.c (worker): Add a missing pull() for > comnparing content. > > * camel-filter-search.c: Fix the symbol table, so match-all is an > immediate function, as it should be. > > * tests/folder/test9.c (main): New test, tests some filtering > things. > > * tests/message/test3.c (main): Dont use a boundary string with > spaces in it. Folding can corrupt it. Maybe the folding isn't > working entirely right, but anyway. > > * camel-session.c: Debug out the debug. > > * camel-filter-driver.c (camel_filter_driver_filter_folder): Plug > a messageinfo leak. > 1a36,94 > > * camel-filter-search.c (header_exists): Changed to support > multiple args (or'd together). > (header_contains): Cleaned up to match the search code. Why did > fejj change it? I'll never know. > (header_matches): > (header_starts_with): > (header_ends_with): Big cleanup of fejj's "i'm the cut & paste > king" code. Also properly handle or'ing of additional args to > match what the folder-search code should do. > (check_match): New function which does the annoying matching > stuff (for header matches). > (check_header): Similarly, handles or'ing of the matches together. > (header_contains): > (header_matches): > (header_starts_with): > (header_ends_with): Call check_header to do the actual work. > (header_soundex): And here too. > (match_all): Yeah like match-all isn't passed expression results, > its passed expression terms. Fix this so match-all works like it > should, by executing the contained expression. > (message_body_contains): Copied directly from > camel-folder-search.c, a more robust/faster/simpler body search > code. > (mime_part_matches): Removed entirely. > (handle_multipart): Removed entirely. > (build_match_regex): Copied from camel-folder-search. Builds a > set of simple strings into a regex pattern that matches any of > them (for faster & simpler matching). Expanded to accept regex > patterns itself, so it can merge them together. > (body_contains): Use build match/match message to match using a > built regex. > (body_regex): Likewise, this time we tell it we're building a > regex though. > (header_full_regex): Use build_match_regex to take the drudgery > out of it, and expand it to handle multiple regex's at once. > (get_full_header): slightly cleaner (well i dunno, the sprintf > stuff just got to me). > (header_regex): Cleaned up to use build_match_Regex too, and to > properly check types. > (filter_message_search): Just allocate 'fms' on the stack. > > * camel-filter-driver.c (camel_filter_driver_finalise): > (camel_filter_driver_init): > (camel_filter_driver_class_init): > (camel_filter_driver_get_type): Changed from gtk object to camel > object. > (camel_filter_driver_add_rule): New function to add a rule to be > processed in sexp form. > (camel_filter_driver_init): Init the rules list. > (camel_filter_driver_finalise): Clear the rules/rules list. > (camel_filter_driver_filter_message): Scan rules list directly > rather than creating on the fly. > > * Makefile.am (libcamelinclude_HEADERS): Added camel-filter-driver.h > (libcamel_la_SOURCES): Added camel-filter-driver.c, code taken > from filter-driver, which can drive, uh, filters based on sexp's. > (libcamelinclude_HEADERS): > (libcamel_la_SOURCES): Added camel-filter-search.[ch] svn path=/trunk/; revision=7560
153 lines
3.6 KiB
Makefile
153 lines
3.6 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SUBDIRS = providers tests
|
|
|
|
libcamelincludedir = $(includedir)/camel
|
|
providerdir = $(libdir)/evolution/camel-providers/$(VERSION)
|
|
|
|
lib_LTLIBRARIES = libcamel.la
|
|
|
|
INCLUDES = -I.. -I$(srcdir)/.. -I$(includedir) \
|
|
-I$(top_srcdir)/intl \
|
|
-I$(top_srcdir)/e-util \
|
|
$(GLIB_CFLAGS) \
|
|
$(UNICODE_CFLAGS) \
|
|
-DCAMEL_PROVIDERDIR=\""$(providerdir)"\" \
|
|
-DG_LOG_DOMAIN=\"camel\"
|
|
|
|
libcamel_la_SOURCES = \
|
|
broken-date-parser.c \
|
|
camel-address.c \
|
|
camel-data-wrapper.c \
|
|
camel-exception.c \
|
|
camel-filter-driver.c \
|
|
camel-filter-search.c \
|
|
camel-folder-search.c \
|
|
camel-folder-summary.c \
|
|
camel-folder-thread.c \
|
|
camel-folder.c \
|
|
camel-internet-address.c \
|
|
camel-lock.c \
|
|
camel-medium.c \
|
|
camel-mime-filter-bestenc.c \
|
|
camel-mime-filter-basic.c \
|
|
camel-mime-filter-charset.c \
|
|
camel-mime-filter-crlf.c \
|
|
camel-mime-filter-from.c \
|
|
camel-mime-filter-index.c \
|
|
camel-mime-filter-linewrap.c \
|
|
camel-mime-filter-save.c \
|
|
camel-mime-filter.c \
|
|
camel-mime-message.c \
|
|
camel-mime-parser.c \
|
|
camel-mime-part-utils.c \
|
|
camel-mime-part.c \
|
|
camel-mime-utils.c \
|
|
camel-movemail.c \
|
|
camel-multipart.c \
|
|
camel-object.c \
|
|
camel-provider.c \
|
|
camel-remote-store.c \
|
|
camel-seekable-stream.c \
|
|
camel-seekable-substream.c \
|
|
camel-service.c \
|
|
camel-session.c \
|
|
camel-store.c \
|
|
camel-stream-buffer.c \
|
|
camel-stream-filter.c \
|
|
camel-stream-fs.c \
|
|
camel-stream-mem.c \
|
|
camel-stream-null.c \
|
|
camel-stream.c \
|
|
camel-transport.c \
|
|
camel-uid-cache.c \
|
|
camel-url.c \
|
|
camel-charset-map.c \
|
|
camel.c \
|
|
gstring-util.c \
|
|
hash-table-utils.c \
|
|
string-utils.c
|
|
|
|
libcamelinclude_HEADERS = \
|
|
broken-date-parser.h \
|
|
camel-address.h \
|
|
camel-charset-map.h \
|
|
camel-data-wrapper.h \
|
|
camel-exception-list.def \
|
|
camel-exception.h \
|
|
camel-filter-driver.h \
|
|
camel-filter-search.h \
|
|
camel-folder-search.h \
|
|
camel-folder-summary.h \
|
|
camel-folder-thread.h \
|
|
camel-folder.h \
|
|
camel-internet-address.h \
|
|
camel-lock.h \
|
|
camel-medium.h \
|
|
camel-mime-filter-bestenc.h \
|
|
camel-mime-filter-basic.h \
|
|
camel-mime-filter-charset.h \
|
|
camel-mime-filter-crlf.h \
|
|
camel-mime-filter-from.h \
|
|
camel-mime-filter-index.h \
|
|
camel-mime-filter-linewrap.h \
|
|
camel-mime-filter-save.h \
|
|
camel-mime-filter.h \
|
|
camel-mime-message.h \
|
|
camel-mime-parser.h \
|
|
camel-mime-part-utils.h \
|
|
camel-mime-part.h \
|
|
camel-mime-utils.h \
|
|
camel-movemail.h \
|
|
camel-multipart.h \
|
|
camel-object.h \
|
|
camel-provider.h \
|
|
camel-remote-store.h \
|
|
camel-seekable-stream.h \
|
|
camel-seekable-substream.h \
|
|
camel-service.h \
|
|
camel-session.h \
|
|
camel-store.h \
|
|
camel-stream-buffer.h \
|
|
camel-stream-filter.h \
|
|
camel-stream-fs.h \
|
|
camel-stream-mem.h \
|
|
camel-stream-null.h \
|
|
camel-stream.h \
|
|
camel-transport.h \
|
|
camel-types.h \
|
|
camel-uid-cache.h \
|
|
camel-url.h \
|
|
camel.h \
|
|
gstring-util.h \
|
|
hash-table-utils.h \
|
|
string-utils.h
|
|
|
|
libcamel_la_LDFLAGS = -version-info 0:0:0 -rpath $(libdir)
|
|
|
|
libcamel_la_LIBADD = $(top_builddir)/e-util/libeutil.la $(UNICODE_LIBS)
|
|
|
|
|
|
noinst_HEADERS = \
|
|
camel-charset-map-private.h \
|
|
camel-private.h
|
|
|
|
EXTRA_DIST = \
|
|
README
|
|
|
|
#noinst_PROGRAMS = \
|
|
# camel-mime-filter-from
|
|
#
|
|
#camel_mime_filter_from_SOURCES = \
|
|
# camel-mime-filter-from.c
|
|
#
|
|
#camel_mime_filter_from_LDADD = \
|
|
# ../camel/libcamel.la \
|
|
# ../e-util/libeutil.la \
|
|
# ../libibex/libibex.la \
|
|
# $(GNOME_LIBDIR) \
|
|
# $(GNOMEUI_LIBS) \
|
|
# $(INTLLIBS) \
|
|
# $(PTHREAD_LIB) \
|
|
# $(EXTRA_GNOME_LIBS)
|