Mercurial > 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 wrap: on
line diff
--- a/configure.ac Sun Jul 18 10:48:14 2010 +0200 +++ b/configure.ac Sun Jul 18 22:01:04 2010 +0200 @@ -150,7 +150,6 @@ ) if test "x$pop3_enabled" = xyes; then AC_DEFINE(ENABLE_POP3, 1, [If the POP3 support is enabled]) -# MD5_LIBS='md5/libmd5c.a' need_md5='yes' fi @@ -164,7 +163,6 @@ if test "x$auth_enabled" = xyes; then AC_DEFINE(ENABLE_AUTH, 1, [If AUTH is enabled]) BASE64_LIBS='base64/libbase64.a' -# MD5_LIBS='md5/libmd5c.a' need_md5='yes' fi AC_SUBST(BASE64_LIBS) @@ -197,7 +195,7 @@ MD5_LIBS='-lcrypto' fi else - MD5_LIBS='md5/libmd5c.a' + MD5_LIBS='md5/libmd5.a' fi fi AC_SUBST(MD5_LIBS)