diff options
author | Munechika SUMIKAWA <sumikawa@FreeBSD.org> | 2000-01-10 14:48:37 +0000 |
---|---|---|
committer | Munechika SUMIKAWA <sumikawa@FreeBSD.org> | 2000-01-10 14:48:37 +0000 |
commit | c5e72308ab435b0b6f53f0c0f39b2a4682585e73 (patch) | |
tree | 6aec9ea294a17d44c034797c52f2d3058baa424c /www | |
parent | Update port to 0.9 (diff) |
Support IPv6.
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=24624
Diffstat (limited to 'www')
-rw-r--r-- | www/w3m/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/www/w3m/Makefile b/www/w3m/Makefile index 0e34760f4c70..bf998b279485 100644 --- a/www/w3m/Makefile +++ b/www/w3m/Makefile @@ -33,6 +33,10 @@ DOCS= FAQ.html MANUAL.html MANUAL_lynx.html README \ SED_CMD= -e "s,%%PREFIX%%,${PREFIX},g" \ -e "s,%%LOCALBASE%%,${LOCALBASE},g" +.if defined(USE_INET6) +SED_CMD+= -e "s,undef INET6,define INET6,g" +.endif + .if defined(JAPANESE) SED_CMD+= -e "s,undef JAPANESE,define JAPANESE,g" \ -e "s,w3mhelp_en.html,w3mhelp_ja.html,g" |