Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Jun 2002 10:24:40 -0400 (EDT)
From:      Steve Wills <steve@stevenwills.com>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/39526: healthd port should allow -DWITHOUT_IPV6
Message-ID:  <200206191424.g5JEOeTj063676@tigger.example.com>

next in thread | raw e-mail | index | archive | help

>Number:         39526
>Category:       ports
>Synopsis:       healthd port should allow -DWITHOUT_IPV6
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jun 19 07:30:08 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Steve Wills
>Release:        FreeBSD 4.6-RELEASE i386
>Organization:
>Environment:
System: FreeBSD tigger.example.com 4.6-RELEASE FreeBSD 4.6-RELEASE #0: Wed Jun 12 20:47:38 EDT 2002 steve@tigger.example.com:/common/FreeBSD/obj/common/FreeBSD/src/sys/TIGGER i386


>Description:
	The healthd port should work on systems which do not include IPv6 support,
but currently does not. Not everyone uses IPv6 and some who don't remove it
from their kernels to save space. Applying the patch included allows one to
define WITHOUT_IPV6, as is common in many ports.
>How-To-Repeat:
	Try to use healthd on a system which doesn't include IPv6 support.
>Fix:

	Apply this patch:

--- Makefile.orig	Wed Jun 19 09:58:35 2002
+++ Makefile	Wed Jun 19 10:19:42 2002
@@ -7,6 +7,7 @@
 
 PORTNAME=	healthd
 PORTVERSION=	0.6.7
+PORTREVISION=   1
 CATEGORIES=	sysutils ipv6
 MASTER_SITES=	http://healthd.thehousleys.net/
 
@@ -27,7 +28,7 @@
 
 .include <bsd.port.pre.mk>
 
-.if ${OSVERSION} < 400014
+.if ${OSVERSION} < 400014 || defined(WITHOUT_IPV6)
 CONFIGURE_ARGS+=	--disable-ipv6
 .endif
 


>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200206191424.g5JEOeTj063676>