diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2004-02-15 07:52:59 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2004-02-15 07:52:59 +0000 |
commit | 1ef0ec6be976327b133ac2199c241cb303b1dd89 (patch) | |
tree | 4f38851637adbc4e0ad59ea767f5ec03daefbc82 /security/putty/Makefile | |
parent | - Update to version 1.4.2.1 (diff) |
- Enable IPV6 Support per default
- new Option WITHOUT_IPV6
Submitted by: ume
Notes
Notes:
svn path=/head/; revision=100968
Diffstat (limited to 'security/putty/Makefile')
-rw-r--r-- | security/putty/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/security/putty/Makefile b/security/putty/Makefile index 138eeeacd19c..7ac47a5382ad 100644 --- a/security/putty/Makefile +++ b/security/putty/Makefile @@ -7,7 +7,8 @@ PORTNAME= putty PORTVERSION= 0.54 -CATEGORIES= security +PORTREVISION= 1 +CATEGORIES= security ipv6 MASTER_SITES= http://the.earth.li/~sgtatham/putty/%SUBDIR%/ MASTER_SITE_SUBDIR= ${PORTVERSION} @@ -17,8 +18,10 @@ COMMENT= Secure shell and telnet client USE_GMAKE= yes WRKSRC= ${WRKDIR}/${DISTNAME}/unix MAKEFILE= Makefile.gtk -CFLAGS+= -DOMIT_UTMP -CFLAGS= -DBSD_PTYS -DOMIT_UTMP +CFLAGS+= -DBSD_PTYS -DOMIT_UTMP +.ifndef WITHOUT_IPV6 +CFLAGS+= -DIPV6 +.endif PLIST_FILES= bin/plink bin/pscp bin/psftp MAN1= plink.1 |