Mercurial > masqmail
comparison configure.ac @ 192:89f951be358f
REMOVED POP3 SUPPORT
masqmail will not include a POP3 client anymore from 0.3.0 on
maybe the POP3 code will be reworked into a standalone program
some day
if you rely on the POP3 client, use fetchmail or something similar
instead
author | meillo@marmaro.de |
---|---|
date | Thu, 15 Jul 2010 14:24:40 +0200 |
parents | 8b17ea9fd17b |
children | bd9704417d49 |
comparison
equal
deleted
inserted
replaced
191:f186650135c3 | 192:89f951be358f |
---|---|
141 ) | 141 ) |
142 if test "x$smtp_server_enabled" = xyes; then | 142 if test "x$smtp_server_enabled" = xyes; then |
143 AC_DEFINE(ENABLE_SMTP_SERVER, 1, [If the SMTP server is enabled]) | 143 AC_DEFINE(ENABLE_SMTP_SERVER, 1, [If the SMTP server is enabled]) |
144 fi | 144 fi |
145 | 145 |
146 dnl pop support (default is use it) | |
147 AC_ARG_ENABLE(pop3, | |
148 [ --disable-pop3 disable pop3 support], | |
149 if test "x$enable_pop3" != 'xno'; then | |
150 pop3_enabled='yes' | |
151 fi, | |
152 ) | |
153 if test "x$pop3_enabled" = xyes; then | |
154 AC_DEFINE(ENABLE_POP3, 1, [If the POP3 support is enabled]) | |
155 # MD5_LIBS='md5/libmd5c.a' | |
156 need_md5='yes' | |
157 fi | |
158 | |
159 dnl auth support (default is to not use it) | 146 dnl auth support (default is to not use it) |
160 AC_ARG_ENABLE(auth, | 147 AC_ARG_ENABLE(auth, |
161 [ --enable-auth enable AUTH (RFC 2554) client support], | 148 [ --enable-auth enable AUTH (RFC 2554) client support], |
162 if test "x$enable_auth" != 'xno'; then | 149 if test "x$enable_auth" != 'xno'; then |
163 auth_enabled='yes' | 150 auth_enabled='yes' |