masqmail

diff configure.ac @ 209:10da50168dab

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 21:58:15 +0200
parents 4fd237550525
children 5eb5a92f3247
line diff
     1.1 --- a/configure.ac	Sun Jul 18 21:49:15 2010 +0200
     1.2 +++ b/configure.ac	Sun Jul 18 21:58:15 2010 +0200
     1.3 @@ -132,7 +132,6 @@
     1.4  if test "x$auth_enabled" = xyes; then
     1.5  	AC_DEFINE(ENABLE_AUTH, 1, [If AUTH is enabled])
     1.6  	BASE64_LIBS='base64/libbase64.a'
     1.7 -#	MD5_LIBS='md5/libmd5c.a'
     1.8  	need_md5='yes'
     1.9  fi
    1.10  AC_SUBST(BASE64_LIBS)
    1.11 @@ -154,7 +153,7 @@
    1.12  			MD5_LIBS='-lcrypto'
    1.13  		fi
    1.14  	else
    1.15 -		MD5_LIBS='md5/libmd5c.a'
    1.16 +		MD5_LIBS='md5/libmd5.a'
    1.17  	fi
    1.18  fi
    1.19  AC_SUBST(MD5_LIBS)