diff options
author | dinoex <dinoex@FreeBSD.org> | 2004-02-15 15:52:59 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2004-02-15 15:52:59 +0800 |
commit | 165e81fd3a8a296a7228c68ac468a24da7e0fdde (patch) | |
tree | c611924a2691e21715010995ccaa7afb388cfa76 /security/putty | |
parent | 74f4d4c9c76fe9ef5adfbc96e5835f09c623c1e2 (diff) | |
download | freebsd-ports-gnome-165e81fd3a8a296a7228c68ac468a24da7e0fdde.tar.gz freebsd-ports-gnome-165e81fd3a8a296a7228c68ac468a24da7e0fdde.tar.zst freebsd-ports-gnome-165e81fd3a8a296a7228c68ac468a24da7e0fdde.zip |
- Enable IPV6 Support per default
- new Option WITHOUT_IPV6
Submitted by: ume
Diffstat (limited to 'security/putty')
-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 |