Mercurial > masqmail
comparison configure.ac @ 164:5b621742b2e7
removed the mserver feature
i.e. the functionality itself in the code
the `mserver' value of online_detect and `mserver_iface' config options
and the --enable-mserver configure option
All functionality, however, is still available through mservdetect
author | meillo@marmaro.de |
---|---|
date | Thu, 08 Jul 2010 22:01:33 +0200 |
parents | 3914d7cabfbc |
children | 25b769efafe6 |
comparison
equal
deleted
inserted
replaced
163:3914d7cabfbc | 164:5b621742b2e7 |
---|---|
214 AC_DEFINE(ENABLE_IDENT, 1, [If ident is enabled]) | 214 AC_DEFINE(ENABLE_IDENT, 1, [If ident is enabled]) |
215 AC_CHECK_LIB(ident, ident_id, IDENT_LIBS='-lident', IDENT_LIBS='libident/libident.a') | 215 AC_CHECK_LIB(ident, ident_id, IDENT_LIBS='-lident', IDENT_LIBS='libident/libident.a') |
216 fi | 216 fi |
217 AC_SUBST(IDENT_LIBS) | 217 AC_SUBST(IDENT_LIBS) |
218 | 218 |
219 dnl mserver support (default is to not use it) | |
220 AC_ARG_ENABLE(mserver, | |
221 [ --enable-mserver enable mserver support], | |
222 if test "x$enable_mserver" != 'xno'; then | |
223 mserver_enabled='yes' | |
224 fi, | |
225 ) | |
226 if test "x$mserver_enabled" = xyes; then | |
227 AC_DEFINE(ENABLE_MSERVER, 1, [If mserver support is enabled]) | |
228 fi | |
229 | |
230 dnl liblockfile | 219 dnl liblockfile |
231 AC_ARG_WITH(liblockfile, | 220 AC_ARG_WITH(liblockfile, |
232 [ --with-liblockfile use liblock (for Debian)], | 221 [ --with-liblockfile use liblock (for Debian)], |
233 ) | 222 ) |
234 if test "x$with_liblockfile" != 'x'; then | 223 if test "x$with_liblockfile" != 'x'; then |