Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Jan 1999 14:00:19 -0700 (MST)
From:      "Kenneth D. Merry" <ken@plutotech.com>
To:        jabley@clear.co.nz (Joe Abley)
Cc:        berenmls@saers.com, freebsd-current@FreeBSD.ORG
Subject:   Re: kernel
Message-ID:  <199901132100.OAA52713@panzer.plutotech.com>
In-Reply-To: <19990114084447.C2686@clear.co.nz> from Joe Abley at "Jan 14, 99 08:44:47 am"

next in thread | previous in thread | raw e-mail | index | archive | help

--ELM916261219-52648-0_
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit

Joe Abley wrote...
> On Wed, Jan 13, 1999 at 03:51:44PM +0100, Niklas Saers wrote:
> > After having cvsuped today (3.0-current), I tried recopiling my kernel
> > which had compiled just fine earlier today with the 3.0-release sources.
> > However, upon doing a "make depend" I got loads of unrefferenced pointers
> > at the aic7xxx-files. Even GENERIC fails to do a proper 'make depend'. Any
> > ideas why?
> 
> Did you try doing a "make clean"? Have you checked your kernel config
> file to make sure it doesn't need updating in view of the various changes
> that have happened recently?

It won't be fixed by that.  Here's a patch from Eivind that fixes the
problem.  If it passes the Bruce test, maybe we can commit it.

Ken
-- 
Kenneth Merry
ken@plutotech.com

--ELM916261219-52648-0_
Content-Type: text/plain; charset=ISO-8859-1
Content-Disposition: attachment; filename=eivind.aicasm.patch
Content-Description: eivind.aicasm.patch
Content-Transfer-Encoding: 7bit

Index: Makefile
===================================================================
RCS file: /home/ncvs/src/sys/dev/aic7xxx/Makefile,v
retrieving revision 1.4
diff -u -r1.4 Makefile
--- Makefile	1997/09/27 19:37:22	1.4
+++ Makefile	1999/01/05 10:21:07
@@ -19,6 +19,10 @@
 DEPENDFILE=
 .endif
 
+
+.if exists(../../../include)
+CFLAGS+= -nostdinc -I../../ -I../../../include
+.endif
 CFLAGS+= -I.
 NOMAN=	noman
 
Index: aicasm_symbol.c
===================================================================
RCS file: /home/ncvs/src/sys/dev/aic7xxx/aicasm_symbol.c,v
retrieving revision 1.5
diff -u -r1.5 aicasm_symbol.c
--- aicasm_symbol.c	1998/09/15 07:24:17	1.5
+++ aicasm_symbol.c	1999/01/05 10:21:07
@@ -30,9 +30,9 @@
 
 
 #include <sys/types.h>
+#include <sys/fcntl.h>
 
 #include <db.h>
-#include <fcntl.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>

--ELM916261219-52648-0_--

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?199901132100.OAA52713>