Mercurial > masqmail
diff 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 |
line wrap: on
line diff
--- a/configure.ac Wed Sep 14 12:07:34 2011 +0200 +++ b/configure.ac Wed Sep 14 12:19:02 2011 +0200 @@ -122,12 +122,13 @@ MD5_LIBS='' BASE64_LIBS='' -dnl auth support (default is to not use it) +dnl auth support (default: use it) AC_ARG_ENABLE(auth, - [ --enable-auth enable AUTH (RFC 2554) client support], + [ --disable-auth disable AUTH (RFC 2554) client support], if test "x$enable_auth" != 'xno'; then auth_enabled='yes' fi, + auth_enabled='yes' ) if test "x$auth_enabled" = xyes; then AC_DEFINE(ENABLE_AUTH, 1, [If AUTH is enabled])