> When trying to build the kernel I get the following error on make depend:
>  
> rm -f .newdep
> make -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | xargs  mkdep -a -f .newdep
> -O -pipe  -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes
> -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual
> -fformat-extensions -ansi  -nostdinc -I- -I. -I../.. -I../../../include
> -I../../contrib/ipfilter  -D_KERNEL -include opt_global.h -elf
> -mpreferred-stack-boundary=2
> ../../dev/awi/awi_wicfg.c:89: i386/include/if_wavelan_ieee.h: No such file
> or directory
> mkdep: compile failed
> *** Error code 1

if_wavelan_ieee.h has moved. Try the patch attached. I'll commit it once
it has survived my "make release" and if someone else hasn't done it
before then.

John
-- 
John Hay -- [EMAIL PROTECTED] / [EMAIL PROTECTED]


Index: sys/dev/awi/awi_wicfg.c
===================================================================
RCS file: /home/ncvs/src/sys/dev/awi/awi_wicfg.c,v
retrieving revision 1.3.2.1
diff -u -r1.3.2.1 awi_wicfg.c
--- sys/dev/awi/awi_wicfg.c     7 Dec 2000 04:09:39 -0000       1.3.2.1
+++ sys/dev/awi/awi_wicfg.c     18 Jun 2002 05:42:15 -0000
@@ -86,7 +86,7 @@
 #include <dev/awi/am79c930var.h>
 
 #undef _KERNEL         /* XXX */
-#include <i386/include/if_wavelan_ieee.h>      /* XXX */
+#include <dev/wi/if_wavelan_ieee.h>    /* XXX */
 #define        _KERNEL         /* XXX */
 #include <dev/awi/awireg.h>
 #include <dev/awi/awivar.h>

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message

Reply via email to