mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Fix check for OpenSSL MD5.
This commit is contained in:
parent
c60604c91a
commit
e95b5d6e44
@ -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>
|
2005-06-29 Hrvoje Niksic <hniksic@xemacs.org>
|
||||||
|
|
||||||
* configure.in: Require Autoconf 2.59.
|
* configure.in: Require Autoconf 2.59.
|
||||||
|
@ -327,7 +327,7 @@ then
|
|||||||
dnl Then see if we're linking OpenSSL anyway; if yes, use its md5
|
dnl Then see if we're linking OpenSSL anyway; if yes, use its md5
|
||||||
dnl implementation.
|
dnl implementation.
|
||||||
if test x"$found_md5" = xno; then
|
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.])
|
AC_DEFINE([HAVE_OPENSSL_MD5], 1, [Define to use OpenSSL MD5.])
|
||||||
found_md5=yes
|
found_md5=yes
|
||||||
AC_MSG_NOTICE([using the OpenSSL MD5 implementation])
|
AC_MSG_NOTICE([using the OpenSSL MD5 implementation])
|
||||||
|
Loading…
Reference in New Issue
Block a user