[svn] Fix check for OpenSSL MD5.

This commit is contained in:
hniksic 2005-06-29 14:41:15 -07:00
parent c60604c91a
commit e95b5d6e44
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-06-29 Hrvoje Niksic <hniksic@xemacs.org>
* configure.in: Test for $LIBSSL instead of the old $ssl_success
when deciding which MD5 to use.
2005-06-29 Hrvoje Niksic <hniksic@xemacs.org>
* configure.in: Require Autoconf 2.59.

View File

@ -327,7 +327,7 @@ then
dnl Then see if we're linking OpenSSL anyway; if yes, use its md5
dnl implementation.
if test x"$found_md5" = xno; then
if test x"$ssl_success" = xyes; then
if test x"$LIBSSL" != x; then
AC_DEFINE([HAVE_OPENSSL_MD5], 1, [Define to use OpenSSL MD5.])
found_md5=yes
AC_MSG_NOTICE([using the OpenSSL MD5 implementation])