Files
evolution/modules/Makefile.am
Matthew Barnes 0d0654c19f Check for SpamAssassin during configure.
If the spamassassin and sa-learn programs cannot be found with
AC_PATH_PROG, configure will abort with an error message.

You can then either:
a) install the SpamAssassin software
b) specify the path with SPAMASSASSIN=/path/to/spamassassin and/or
   SA_LEARN=/path/to/sa-learn
c) pass --disable-spamassassin to configure to exclude the module

This also drops the "spamc" and "spamd" GSettings keys.
2012-09-30 23:26:23 -04:00

65 lines
1.1 KiB
Makefile

if ENABLE_BOGOFILTER
BOGOFILTER_DIR = bogofilter
endif
if ENABLE_LDAP
CONFIG_LDAP_DIR = book-config-ldap
endif
if ENABLE_WEATHER
CONFIG_WEATHER_DIR = cal-config-weather
endif
if ENABLE_ONLINE_ACCOUNTS
ONLINE_ACCOUNTS_DIR = online-accounts
endif
if ENABLE_SPAMASSASSIN
SPAMASSASSIN_DIR = spamassassin
endif
if ENABLE_TNEF
TNEF_ATTACHMENT_DIR = tnef-attachment
endif
if ENABLE_AUDIO_INLINE
AUDIO_INLINE_DIR = audio-inline
endif
SUBDIRS = \
addressbook \
calendar \
mail \
backup-restore \
book-config-google \
$(CONFIG_LDAP_DIR) \
book-config-local \
book-config-webdav \
cal-config-caldav \
cal-config-contacts \
cal-config-google \
cal-config-local \
$(CONFIG_WEATHER_DIR) \
cal-config-webcal \
composer-autosave \
imap-features \
itip-formatter \
mail-config \
mailto-handler \
mdn \
offline-alert \
plugin-lib \
plugin-manager \
prefer-plain \
startup-wizard \
text-highlight \
vcard-inline \
web-inspector \
$(BOGOFILTER_DIR) \
$(ONLINE_ACCOUNTS_DIR) \
$(SPAMASSASSIN_DIR) \
$(TNEF_ATTACHMENT_DIR) \
$(AUDIO_INLINE_DIR)
-include $(top_srcdir)/git.mk