[svn] Mention in message that the "GNU" md5 implementation is in fact built-in to

Wget.
This commit is contained in:
hniksic 2005-06-30 18:23:03 -07:00
parent 6fbd5c2a5e
commit 7124619cb9
2 changed files with 9 additions and 4 deletions

View File

@ -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> 2005-06-29 Hrvoje Niksic <hniksic@xemacs.org>
* m4/wget.m4 (WGET_WITH_NLS): Don't check for locale.h. * m4/wget.m4 (WGET_WITH_NLS): Don't check for locale.h.

View File

@ -316,7 +316,7 @@ then
AC_COMPILE_IFELSE([#include <md5.h> AC_COMPILE_IFELSE([#include <md5.h>
], [ ], [
AC_MSG_RESULT(yes) 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" LIBS="-lmd5 $LIBS"
found_md5=yes found_md5=yes
AC_MSG_NOTICE([using the Solaris MD5 implementation]) AC_MSG_NOTICE([using the Solaris MD5 implementation])
@ -328,7 +328,7 @@ then
dnl implementation. dnl implementation.
if test x"$found_md5" = xno; then if test x"$found_md5" = xno; then
if test x"$LIBSSL" != x; 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 found_md5=yes
AC_MSG_NOTICE([using the OpenSSL MD5 implementation]) AC_MSG_NOTICE([using the OpenSSL MD5 implementation])
fi fi
@ -336,10 +336,10 @@ then
dnl If none of the above worked, use the one we ship with Wget. dnl If none of the above worked, use the one we ship with Wget.
if test x"$found_md5" = xno; then 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" MD5_OBJ="$MD5_OBJ gnu-md5.o"
found_md5=yes found_md5=yes
AC_MSG_NOTICE([using the GNU MD5 implementation]) AC_MSG_NOTICE([using the built-in (GNU) MD5 implementation])
AC_C_BIGENDIAN AC_C_BIGENDIAN
fi fi
fi fi