From owner-cvs-src@FreeBSD.ORG Fri Oct 14 23:17:45 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4DEE16A41F; Fri, 14 Oct 2005 23:17:45 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A65DD43D45; Fri, 14 Oct 2005 23:17:45 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9ENHjMB095448; Fri, 14 Oct 2005 23:17:45 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9ENHjoD095447; Fri, 14 Oct 2005 23:17:45 GMT (envelope-from yar) Message-Id: <200510142317.j9ENHjoD095447@repoman.freebsd.org> From: Yar Tikhiy Date: Fri, 14 Oct 2005 23:17:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/smbfs smbfs_vfsops.c src/sys/netgraph ng_mppc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Oct 2005 23:17:46 -0000 yar 2005-10-14 23:17:45 UTC FreeBSD src repository Modified files: sys/fs/nwfs nwfs_vfsops.c sys/fs/smbfs smbfs_vfsops.c sys/netgraph ng_mppc.c Log: In preparation for making the modules actually use opt_*.h files provided in the kernel build directory, fix modules that were failing to build this way due to not quite correct kernel option usage. In particular: ng_mppc.c uses two complementary options, both of which are listed in sys/conf/files. Ideally, there should be a separate option for including ng_mppc.c in kernel build, but now only NETGRAPH_MPPC_ENCRYPTION is usable anyway, the other one requires proprietary files. nwfs and smbfs were trying to ensure they were built with proper network components, but the check was rather questionable. Discussed with: ru Revision Changes Path 1.42 +0 -4 src/sys/fs/nwfs/nwfs_vfsops.c 1.35 +0 -4 src/sys/fs/smbfs/smbfs_vfsops.c 1.24 +6 -0 src/sys/netgraph/ng_mppc.c