Commit b0533c64 b0533c6471815856c2c80305e829bae5ca7a4624 by Sergey Poznyakoff

Conditionally build directories depending on protocols that may be disabled.

1 parent 3124b2b2
...@@ -5,10 +5,18 @@ ...@@ -5,10 +5,18 @@
5 AUTOMAKE_OPTIONS = gnu 1.6 readme-alpha 5 AUTOMAKE_OPTIONS = gnu 1.6 readme-alpha
6 ACLOCAL_AMFLAGS = -I m4 6 ACLOCAL_AMFLAGS = -I m4
7 7
8 # directories depending on mh support
9 MH_DIRS = mh
10 MH_BUILD_DIRS = @MH_BUILD_DIRS@
11
12 # directories depending on the smtp protocol
13 SMTP_DIRS = mail.remote
14 SMTP_BUILD_DIRS = @SMTP_BUILD_DIRS@
15
8 SUBDIRS = include m4 lib testsuite mailbox examples doc \ 16 SUBDIRS = include m4 lib testsuite mailbox examples doc \
9 auth frm from pop3d imap4d \ 17 auth frm from pop3d imap4d \
10 mail sieve scripts libmu_scm guimb messages comsat readmsg \ 18 mail sieve scripts libmu_scm guimb messages comsat readmsg \
11 mail.local mail.remote dotlock mh 19 mail.local $(SMTP_BUILD_DIRS) dotlock $(MH_DIRS)
12 20
13 EXTRA_DIST = mailutils.spec mailutils.spec.in COPYING.FDL 21 EXTRA_DIST = mailutils.spec mailutils.spec.in COPYING.FDL
14 22
......