summaryrefslogtreecommitdiff
path: root/ftp/wget-devel/files/patch-configure.in
diff options
context:
space:
mode:
authorFUJISHIMA Satsuki <sf@FreeBSD.org>2002-01-05 10:41:15 +0000
committerFUJISHIMA Satsuki <sf@FreeBSD.org>2002-01-05 10:41:15 +0000
commit3c235f227d9a373c6ab467bd8f0a6a19590ea821 (patch)
treefb9301319ee9d7ae0eacd64d64b6ea36b6e10ae1 /ftp/wget-devel/files/patch-configure.in
parentUpdate to 0.9.11 which fixes security hole (diff)
o update to 1.8.1.
o autoconf is no longer required. o update ja.po. PR: 33570 Submitted by: Alan Eldridge <ports@geeksrus.net> (for update)
Notes
Notes: svn path=/head/; revision=52607
Diffstat (limited to 'ftp/wget-devel/files/patch-configure.in')
-rw-r--r--ftp/wget-devel/files/patch-configure.in32
1 files changed, 0 insertions, 32 deletions
diff --git a/ftp/wget-devel/files/patch-configure.in b/ftp/wget-devel/files/patch-configure.in
deleted file mode 100644
index aab0684fbb72..000000000000
--- a/ftp/wget-devel/files/patch-configure.in
+++ /dev/null
@@ -1,32 +0,0 @@
-Index: configure.in
-===================================================================
-RCS file: /pack/anoncvs/wget/configure.in,v
-retrieving revision 1.30
-retrieving revision 1.31
-diff -u -r1.30 -r1.31
---- configure.in 2001/12/06 10:45:26 1.30
-+++ configure.in 2001/12/11 06:20:22 1.31
-@@ -340,18 +340,18 @@
- dnl Find an md5 implementation.
- dnl
-
--dnl On Solaris, we use libmd5. If we're compiled with OpenSSL, use
--dnl OpenSSL's md5 support. Otherwise, use our own md5.
--
- if test x$wget_need_md5 = xyes
- then
- MD5_OBJ='gen-md5$o'
-
- found_md5=no
-
-- dnl First check for Solaris md5.
-+ dnl Check for the system MD5 library on Solaris. We don't check for
-+ dnl something simple like "MD5Update" because there are a number of
-+ dnl MD5 implementations that use that name. md5_calc is, hopefully,
-+ dnl specific to the Solaris MD5 library.
- if test x$found_md5 = xno; then
-- AC_CHECK_LIB(md5, MD5Update, [
-+ AC_CHECK_LIB(md5, md5_calc, [
- AC_DEFINE(HAVE_SOLARIS_MD5)
- LIBS="-lmd5 $LIBS"
- found_md5=yes