From owner-freebsd-current Sun Dec 31 12:53:52 2000 From owner-freebsd-current@FreeBSD.ORG Sun Dec 31 12:53:50 2000 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from jbloom.jbloom.org (reyim.ne.mediaone.net [24.218.251.241]) by hub.freebsd.org (Postfix) with ESMTP id EEB9937B400 for ; Sun, 31 Dec 2000 12:53:49 -0800 (PST) Received: from acm.org (localhost [127.0.0.1]) by jbloom.jbloom.org (8.11.1/8.11.1) with ESMTP id eBVKmr914798; Sun, 31 Dec 2000 15:48:53 -0500 (EST) (envelope-from bloom@acm.org) Sender: bloom@jbloom.jbloom.org Message-ID: <3A4F9BB5.F699D66B@acm.org> Date: Sun, 31 Dec 2000 15:48:53 -0500 From: Jim Bloom Reply-To: bloom@acm.org X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: Poul-Henning Kamp , current@freebsd.org Subject: Problem building md module Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG While trying to build a new kernel today, I received errors relating to vnode_if.h not existing. I have put the patch below which fixed the problem for me. (Sorry if the patch does not apply because of cut and paste errors, but it may easily be hand editted.) Jim Bloom bloom@acm.org Index: Makefile =================================================================== RCS file: /users/ncvs/src/sys/modules/md/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- Makefile 2000/09/02 19:17:10 1.7 +++ Makefile 2000/12/31 18:35:36 @@ -2,7 +2,7 @@ .PATH: ${.CURDIR}/../../dev/md KMOD= md -SRCS= md.c opt_mfs.h opt_md.h +SRCS= md.c opt_mfs.h opt_md.h vnode_if.h NOMAN= .include To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message