]> sjero.net Git - wget/commitdiff
[svn] Mention in message that the "GNU" md5 implementation is in fact built-in to
authorhniksic <devnull@localhost>
Fri, 1 Jul 2005 01:23:03 +0000 (18:23 -0700)
committerhniksic <devnull@localhost>
Fri, 1 Jul 2005 01:23:03 +0000 (18:23 -0700)
Wget.

ChangeLog
configure.in

index aea73d91e1ffcd5816a309722e1d7c28ccc0b3fa..c4e397bc7497aebfc7dfc0ad1de5567fb3521e4b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-07-01  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * configure.in: Mention in message that the "GNU" md5
+       implementation is in fact built-in to Wget.
+
 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
 
        * m4/wget.m4 (WGET_WITH_NLS): Don't check for locale.h.
index 7ea30953117fc055478deee198023a542ac5ec46..68107e04c7c1d93e9c55425dec76f507bfdae5d6 100644 (file)
@@ -316,7 +316,7 @@ then
       AC_COMPILE_IFELSE([#include <md5.h>
                         ], [
         AC_MSG_RESULT(yes)
-        AC_DEFINE([HAVE_SOLARIS_MD5], 1, [Define to use Solaris MD5.])
+        AC_DEFINE([HAVE_SOLARIS_MD5], 1, [Define when using Solaris MD5.])
         LIBS="-lmd5 $LIBS"
         found_md5=yes
         AC_MSG_NOTICE([using the Solaris MD5 implementation])
@@ -328,7 +328,7 @@ then
   dnl implementation.
   if test x"$found_md5" = xno; 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 when using OpenSSL MD5.])
       found_md5=yes
       AC_MSG_NOTICE([using the OpenSSL MD5 implementation])
     fi
@@ -336,10 +336,10 @@ then
 
   dnl If none of the above worked, use the one we ship with Wget.
   if test x"$found_md5" = xno; then
-    AC_DEFINE([HAVE_BUILTIN_MD5], 1, [Define to use built-in MD5.])
+    AC_DEFINE([HAVE_BUILTIN_MD5], 1, [Define when using built-in MD5.])
     MD5_OBJ="$MD5_OBJ gnu-md5.o"
     found_md5=yes
-    AC_MSG_NOTICE([using the GNU MD5 implementation])
+    AC_MSG_NOTICE([using the built-in (GNU) MD5 implementation])
     AC_C_BIGENDIAN
   fi
 fi