diff options
author | Peter Williams <peterw@src.gnome.org> | 2000-06-22 02:14:44 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2000-06-22 02:14:44 +0800 |
commit | 42d0cc5ca71d52130cea48c481344ce081b158a1 (patch) | |
tree | 5a41431ae2a59442fd21289e09b98d4e61cf2f7f /mail/Makefile.am | |
parent | 100bc92dd2821cf71c695ae5735647051b09ed45 (diff) | |
download | gsoc2013-evolution-42d0cc5ca71d52130cea48c481344ce081b158a1.tar.gz gsoc2013-evolution-42d0cc5ca71d52130cea48c481344ce081b158a1.tar.zst gsoc2013-evolution-42d0cc5ca71d52130cea48c481344ce081b158a1.zip |
Add the async mail API (still not hooked up though)
svn path=/trunk/; revision=3676
Diffstat (limited to 'mail/Makefile.am')
-rw-r--r-- | mail/Makefile.am | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/mail/Makefile.am b/mail/Makefile.am index 51c7aa3150..e940eeed45 100644 --- a/mail/Makefile.am +++ b/mail/Makefile.am @@ -1,4 +1,4 @@ -bin_PROGRAMS = evolution-mail test-mail +bin_PROGRAMS = evolution-mail test-mail test-thread providerdir = $(libdir)/evolution/camel-providers/$(VERSION) @@ -45,6 +45,8 @@ evolution_mail_SOURCES = \ mail-format.c \ mail-identify.c \ mail-ops.c \ + mail-threads.c \ + mail-threads.h \ mail-types.h \ main.c \ message-list.c \ @@ -67,6 +69,7 @@ evolution_mail_LDADD = \ $(top_builddir)/libibex/libibex.la \ $(top_builddir)/filter/libfilter.la \ $(BONOBO_HTML_GNOME_LIBS) \ + $(PTHREAD_LIB) \ $(UNICODE_LIBS) test_mail_SOURCES = \ @@ -75,6 +78,16 @@ test_mail_SOURCES = \ test_mail_LDADD = \ $(BONOBO_HTML_GNOME_LIBS) +test_thread_SOURCES = \ + mail-threads.c \ + mail-threads.h \ + test-thread.c + +test_thread_LDADD = \ + $(BONOBO_VFS_GNOME_LIBS) \ + $(PTHREAD_LIB) + +test_thread_CFLAGS = -g GOAD_FILES = evolution-mail.gnorba OAF_FILES = evolution-mail.oafinfo |