ports/144379: rrdbotd doesn't work on systems without IPv6

Jeremy Chadwick freebsd at jdc.parodius.com
Sun Feb 28 23:50:01 UTC 2010


>Number:         144379
>Category:       ports
>Synopsis:       rrdbotd doesn't work on systems without IPv6
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sun Feb 28 23:50:01 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Jeremy Chadwick
>Release:        FreeBSD 8.0-STABLE amd64
>Organization:
>Environment:
System: FreeBSD icarus.home.lan 8.0-STABLE FreeBSD 8.0-STABLE #0: Sat Jan 16 17:48:04 PST 2010 root at icarus.home.lan:/usr/obj/usr/src/sys/X7SBA_RELENG_8_amd64 amd64
>Description:
	Makefile does not include necessary configure semantics for systems
	which do not have IPv6 enabled on them.  For systems with WITHOUT_IPV6
	defined in make.conf (or on the command-line), --disable-ipv6 needs
	to be passed to configure.
>How-To-Repeat:
	Attempt to run rrdbotd on a system without IPv6.
>Fix:
	The following port Makefile patch fixes the issue:

--- Makefile.orig	2009-11-08 04:59:33.000000000 -0800
+++ Makefile	2010-02-28 15:40:36.000000000 -0800
@@ -30,6 +30,10 @@
 CONFIGURE_ARGS+=	--enable-debug
 .endif
 
+.if defined(WITHOUT_IPV6)
+CONFIGURE_ARGS+=	--disable-ipv6
+.endif
+
 post-install:
 	@${CAT} ${PKGMESSAGE}
 
>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list