From owner-svn-src-stable@FreeBSD.ORG Tue Aug 30 01:25:13 2011 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D002106566B; Tue, 30 Aug 2011 01:25:13 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2C6F78FC08; Tue, 30 Aug 2011 01:25:13 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p7U1PDCZ026673; Tue, 30 Aug 2011 01:25:13 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p7U1PDdI026671; Tue, 30 Aug 2011 01:25:13 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201108300125.p7U1PDdI026671@svn.freebsd.org> From: Xin LI Date: Tue, 30 Aug 2011 01:25:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r225254 - stable/8/etc/rc.d X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2011 01:25:13 -0000 Author: delphij Date: Tue Aug 30 01:25:12 2011 New Revision: 225254 URL: http://svn.freebsd.org/changeset/base/225254 Log: MFC r225120: Honor WITHOUT_IPX when installing etc/rc.d/ipxrouted. Modified: stable/8/etc/rc.d/Makefile Directory Properties: stable/8/etc/ (props changed) Modified: stable/8/etc/rc.d/Makefile ============================================================================== --- stable/8/etc/rc.d/Makefile Tue Aug 30 01:22:27 2011 (r225253) +++ stable/8/etc/rc.d/Makefile Tue Aug 30 01:25:12 2011 (r225254) @@ -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_OPENSSH} != "no" FILES+= sshd .endif