]> sjero.net Git - wget/commitdiff
[svn] Fix check for OpenSSL MD5.
authorhniksic <devnull@localhost>
Wed, 29 Jun 2005 21:41:15 +0000 (14:41 -0700)
committerhniksic <devnull@localhost>
Wed, 29 Jun 2005 21:41:15 +0000 (14:41 -0700)
ChangeLog
configure.in

index a9001f6fda82c1e6f41f8e1bdcaffc2ef70e2fbb..9dbae27c6f37f45ff83253630b48f9209d4009fb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 1efe8c790a0cdd566cda67c3913e4482d93d1124..7ea30953117fc055478deee198023a542ac5ec46 100644 (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])