Mercurial > masqmail
comparison configure.ac @ 205:4fd237550525
REMOVED MAILDIR SUPPORT
if you want to deliver to maildir, use an MDA like procmail
masqmail can pass mail to an MDA by setting `mda' in masqmail.conf
author | meillo@marmaro.de |
---|---|
date | Fri, 16 Jul 2010 16:38:50 +0200 |
parents | 5745edd5b769 |
children | 10da50168dab |
comparison
equal
deleted
inserted
replaced
204:5745edd5b769 | 205:4fd237550525 |
---|---|
135 # MD5_LIBS='md5/libmd5c.a' | 135 # MD5_LIBS='md5/libmd5c.a' |
136 need_md5='yes' | 136 need_md5='yes' |
137 fi | 137 fi |
138 AC_SUBST(BASE64_LIBS) | 138 AC_SUBST(BASE64_LIBS) |
139 | 139 |
140 dnl maildir support (default is to not use it) | |
141 AC_ARG_ENABLE(maildir, | |
142 [ --enable-maildir enable qmail style maildir support], | |
143 if test "x$enable_maildir" != 'xno'; then | |
144 maildir_enabled='yes' | |
145 fi, | |
146 ) | |
147 if test "x$maildir_enabled" = xyes; then | |
148 AC_DEFINE(ENABLE_MAILDIR, 1, [If Maildirs are enabled]) | |
149 fi | |
150 | |
151 dnl libcrypto | 140 dnl libcrypto |
152 AC_ARG_WITH(libcrypto, | 141 AC_ARG_WITH(libcrypto, |
153 [ --with-libcrypto use libcrypto], | 142 [ --with-libcrypto use libcrypto], |
154 ) | 143 ) |
155 if test "x$with_libcrypto" != 'xyes'; then | 144 if test "x$with_libcrypto" != 'xyes'; then |