diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2001-02-14 11:30:56 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-02-14 11:30:56 +0000 |
commit | b63d6851135d289f919ec7011689a6593258a23e (patch) | |
tree | 48bced138ce8329b5c69e30d057b62bd7474c64b | |
parent | 1) Install up-to-date tmac suite from recent 4-STABLE live-tree (diff) |
The IPv6 patch breaks NcFTP on IPv4-only systems such that is unable to
resolve any names. If you want IPv6 functionality, you'll need to define
WANT_IPV6 for now.
Submitted by: ache
Notes
Notes:
svn path=/head/; revision=38327
-rw-r--r-- | ftp/ncftp3/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ftp/ncftp3/Makefile b/ftp/ncftp3/Makefile index fa5a639a4270..af869ae30ee0 100644 --- a/ftp/ncftp3/Makefile +++ b/ftp/ncftp3/Makefile @@ -13,7 +13,9 @@ MASTER_SITES= ftp://ftp.ncftp.com/ncftp/ DISTNAME= ncftp-${PORTVERSION}-src PATCH_SITES= ftp://ftp.kame.net/pub/kame/misc/ +.if defined(WANT_IPV6) PATCHFILES= ncftp-302-v6-20001113.diff.gz +.endif PATCH_DIST_STRIP= -p1 MAINTAINER= obrien@FreeBSD.org |