From 165e81fd3a8a296a7228c68ac468a24da7e0fdde Mon Sep 17 00:00:00 2001 From: dinoex Date: Sun, 15 Feb 2004 07:52:59 +0000 Subject: - Enable IPV6 Support per default - new Option WITHOUT_IPV6 Submitted by: ume --- security/putty/Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'security/putty') 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 -- cgit