Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Aug 2011 19:29:12 +0000 (UTC)
From:      Xin LI <delphij@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r225120 - head/etc/rc.d
Message-ID:  <201108231929.p7NJTCc4016432@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: delphij
Date: Tue Aug 23 19:29:11 2011
New Revision: 225120
URL: http://svn.freebsd.org/changeset/base/225120

Log:
  Honor WITHOUT_IPX when installing etc/rc.d/ipxrouted.
  
  MFC after:	1 week
  Approved by:	re (kib)

Modified:
  head/etc/rc.d/Makefile

Modified: head/etc/rc.d/Makefile
==============================================================================
--- head/etc/rc.d/Makefile	Tue Aug 23 14:37:42 2011	(r225119)
+++ head/etc/rc.d/Makefile	Tue Aug 23 19:29:11 2011	(r225120)
@@ -16,7 +16,7 @@ FILES=	DAEMON FILESYSTEMS LOGIN NETWORKI
 	hostapd hostid hostid_save hostname \
 	inetd initrandom \
 	ip6addrctl ipfilter ipfs ipfw ipmon \
-	ipnat ipsec ipxrouted \
+	ipnat ipsec \
 	jail \
 	kadmind kerberos keyserv kld kldxref kpasswdd \
 	ldconfig local localpkg lockd lpd \
@@ -42,6 +42,10 @@ FILES=	DAEMON FILESYSTEMS LOGIN NETWORKI
 	ypset ypupdated ypxfrd \
 	zfs zvol
 
+.if ${MK_IPX} != "no"
+FILES+=	ipxrouted
+.endif
+
 .if ${MK_OFED} != "no"
 FILES+= opensm
 .endif



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