Two fixes:

- support "If-Modified-Since"
	- fix generation of links when rewriting links in html

PR:		8651
Submitted by:	Kensaku Masuda <greg@greg.rim.or.jp>
This commit is contained in:
Steve Price 1999-05-01 02:31:46 +00:00
parent 8233cc814c
commit dbc49d3be4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=18270
2 changed files with 12 additions and 4 deletions

View file

@ -3,7 +3,7 @@
# Date created: 31 December 1996
# Whom: Thomas Gellekum <tg@FreeBSD.ORG>
#
# $Id: Makefile,v 1.11 1999/01/27 07:41:25 fenner Exp $
# $Id: Makefile,v 1.12 1999/03/20 17:18:04 nectar Exp $
#
DISTNAME= wget-1.5.3
@ -21,10 +21,14 @@ LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext
GNU_CONFIGURE= yes
INFOFILES= wget.info
post-install:
if [ ! -f ${PREFIX}/info/dir ]; then \
${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \
fi
-install-info ${PREFIX}/info/wget.info ${PREFIX}/info/dir
.for i in ${INFOFILES}
install-info ${PREFIX}/info/${i} ${PREFIX}/info/dir
.endfor
.include <bsd.port.mk>

View file

@ -3,7 +3,7 @@
# Date created: 31 December 1996
# Whom: Thomas Gellekum <tg@FreeBSD.ORG>
#
# $Id: Makefile,v 1.11 1999/01/27 07:41:25 fenner Exp $
# $Id: Makefile,v 1.12 1999/03/20 17:18:04 nectar Exp $
#
DISTNAME= wget-1.5.3
@ -21,10 +21,14 @@ LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext
GNU_CONFIGURE= yes
INFOFILES= wget.info
post-install:
if [ ! -f ${PREFIX}/info/dir ]; then \
${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \
fi
-install-info ${PREFIX}/info/wget.info ${PREFIX}/info/dir
.for i in ${INFOFILES}
install-info ${PREFIX}/info/${i} ${PREFIX}/info/dir
.endfor
.include <bsd.port.mk>