Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Jun 2002 10:01:18 +0200 (SAT)
From:      John Hay <jhay@icomtek.csir.co.za>
To:        rickhard.carlsward@dataknuten.se ([Rickhard Carlsw_rd])
Cc:        freebsd-stable@FreeBSD.ORG, imp@FreeBSD.ORG
Subject:   Re: Problem building stable
Message-ID:  <200206180801.g5I81If21348@zibbi.icomtek.csir.co.za>
In-Reply-To: <B34D59417CEA1E4CACF5CF4F4AD2229455E0@exchange.dataknuten.se> from "[Rickhard Carlsw_rd]" at "Jun 18, 2002 08:34:14 am"

next in thread | previous in thread | raw e-mail | index | archive | help
> 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 -- John.Hay@icomtek.csir.co.za / jhay@FreeBSD.org


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 majordomo@FreeBSD.org
with "unsubscribe freebsd-stable" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200206180801.g5I81If21348>