summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorJames E. Housley <jeh@FreeBSD.org>2002-06-19 16:12:06 +0000
committerJames E. Housley <jeh@FreeBSD.org>2002-06-19 16:12:06 +0000
commit599c9329ca85a7b5e39fc6c2dd06d30e070c0723 (patch)
tree8edd501fc650734563497484b954b75bc09b8d7e /sysutils
parentAdd a missing dependency on librsvg2. (diff)
Allow IPv6 to be excluded via -DWITHOUT_IPV6
Bump PORTREVISION PR: 39526 Submitted by: steve@stevenwills.com
Notes
Notes: svn path=/head/; revision=61571
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/healthd/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysutils/healthd/Makefile b/sysutils/healthd/Makefile
index 6f838ad58962..cf2c9b017597 100644
--- a/sysutils/healthd/Makefile
+++ b/sysutils/healthd/Makefile
@@ -7,6 +7,7 @@
PORTNAME= healthd
PORTVERSION= 0.6.8
+PORTREVISION= 1
CATEGORIES= sysutils ipv6
MASTER_SITES= http://healthd.thehousleys.net/
@@ -27,7 +28,7 @@ HDDOCDIR= ${PREFIX}/share/doc/healthd
.include <bsd.port.pre.mk>
-.if ${OSVERSION} < 400014
+.if ${OSVERSION} < 400014 || defined(WITHOUT_IPV6)
CONFIGURE_ARGS+= --disable-ipv6
.endif