masqmail-0.2

diff configure.ac @ 162:52c82d755215

replaced the MD5 implementation with the one of Solar Designer Until now, the sample code of RFC 1321 was used. It had an ugly license. Now we use the implementation of Solar Designer, which is in the Public Domain. http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5
author meillo@marmaro.de
date Sun, 18 Jul 2010 22:01:04 +0200
parents 0e7601b8cebf
children fa7641eb29c7
line diff
     1.1 --- a/configure.ac	Sun Jul 18 10:48:14 2010 +0200
     1.2 +++ b/configure.ac	Sun Jul 18 22:01:04 2010 +0200
     1.3 @@ -150,7 +150,6 @@
     1.4  	)
     1.5  if test "x$pop3_enabled" = xyes; then
     1.6  	AC_DEFINE(ENABLE_POP3, 1, [If the POP3 support is enabled])
     1.7 -#	MD5_LIBS='md5/libmd5c.a'
     1.8  	need_md5='yes'
     1.9  fi
    1.10  
    1.11 @@ -164,7 +163,6 @@
    1.12  if test "x$auth_enabled" = xyes; then
    1.13  	AC_DEFINE(ENABLE_AUTH, 1, [If AUTH is enabled])
    1.14  	BASE64_LIBS='base64/libbase64.a'
    1.15 -#	MD5_LIBS='md5/libmd5c.a'
    1.16  	need_md5='yes'
    1.17  fi
    1.18  AC_SUBST(BASE64_LIBS)
    1.19 @@ -197,7 +195,7 @@
    1.20  			MD5_LIBS='-lcrypto'
    1.21  		fi
    1.22  	else
    1.23 -		MD5_LIBS='md5/libmd5c.a'
    1.24 +		MD5_LIBS='md5/libmd5.a'
    1.25  	fi
    1.26  fi
    1.27  AC_SUBST(MD5_LIBS)