Mercurial > masqmail
comparison configure.ac @ 364:72653295b75d
Enabled auth support per default
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Wed, 14 Sep 2011 12:19:02 +0200 |
parents | 02bc0331e390 |
children | 934a223e4ee8 |
comparison
equal
deleted
inserted
replaced
363:02bc0331e390 | 364:72653295b75d |
---|---|
120 | 120 |
121 dnl optional features | 121 dnl optional features |
122 MD5_LIBS='' | 122 MD5_LIBS='' |
123 BASE64_LIBS='' | 123 BASE64_LIBS='' |
124 | 124 |
125 dnl auth support (default is to not use it) | 125 dnl auth support (default: use it) |
126 AC_ARG_ENABLE(auth, | 126 AC_ARG_ENABLE(auth, |
127 [ --enable-auth enable AUTH (RFC 2554) client support], | 127 [ --disable-auth disable AUTH (RFC 2554) client support], |
128 if test "x$enable_auth" != 'xno'; then | 128 if test "x$enable_auth" != 'xno'; then |
129 auth_enabled='yes' | 129 auth_enabled='yes' |
130 fi, | 130 fi, |
131 auth_enabled='yes' | |
131 ) | 132 ) |
132 if test "x$auth_enabled" = xyes; then | 133 if test "x$auth_enabled" = xyes; then |
133 AC_DEFINE(ENABLE_AUTH, 1, [If AUTH is enabled]) | 134 AC_DEFINE(ENABLE_AUTH, 1, [If AUTH is enabled]) |
134 BASE64_LIBS='base64/libbase64.a' | 135 BASE64_LIBS='base64/libbase64.a' |
135 need_md5='yes' | 136 need_md5='yes' |