diff options
author | James E. Housley <jeh@FreeBSD.org> | 2002-06-19 16:12:06 +0000 |
---|---|---|
committer | James E. Housley <jeh@FreeBSD.org> | 2002-06-19 16:12:06 +0000 |
commit | 599c9329ca85a7b5e39fc6c2dd06d30e070c0723 (patch) | |
tree | 8edd501fc650734563497484b954b75bc09b8d7e /sysutils | |
parent | Add 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/Makefile | 3 |
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 |