Date: Sun, 31 Dec 2000 15:48:53 -0500 From: Jim Bloom <bloom@acm.org> To: Poul-Henning Kamp <phk@critter.freebsd.dk>, current@freebsd.org Subject: Problem building md module Message-ID: <3A4F9BB5.F699D66B@acm.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.kmod.mk> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3A4F9BB5.F699D66B>