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 diff
     1.1 --- a/configure.ac	Wed Sep 14 12:07:34 2011 +0200
     1.2 +++ b/configure.ac	Wed Sep 14 12:19:02 2011 +0200
     1.3 @@ -122,12 +122,13 @@
     1.4  MD5_LIBS=''
     1.5  BASE64_LIBS=''
     1.6  
     1.7 -dnl auth support (default is to not use it)
     1.8 +dnl auth support (default: use it)
     1.9  AC_ARG_ENABLE(auth,
    1.10 -	[  --enable-auth           enable AUTH (RFC 2554) client support],
    1.11 +	[  --disable-auth          disable AUTH (RFC 2554) client support],
    1.12  	if test "x$enable_auth" != 'xno'; then
    1.13  		auth_enabled='yes'
    1.14  	fi,
    1.15 +	auth_enabled='yes'
    1.16  	)
    1.17  if test "x$auth_enabled" = xyes; then
    1.18  	AC_DEFINE(ENABLE_AUTH, 1, [If AUTH is enabled])