From owner-freebsd-current Sun Aug 4 17:07:05 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id RAA03734 for current-outgoing; Sun, 4 Aug 1996 17:07:05 -0700 (PDT) Received: from lear35.cytex.com (root@lear35.cytex.com [38.252.97.5]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id RAA03729 for ; Sun, 4 Aug 1996 17:07:03 -0700 (PDT) Received: (from mbartley@localhost) by lear35.cytex.com (8.7.5/8.7.3) id QAA02052 for current@freebsd.org; Sun, 4 Aug 1996 16:52:59 -0700 (PDT) From: Matt Bartley Message-Id: <199608042352.QAA02052@lear35.cytex.com> Subject: kernel compile fails at if_ethersubr.c To: current@freebsd.org Date: Sun, 4 Aug 1996 16:52:58 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I'm running -current, CTM level src-cur 2059. This happened at CTM level 2058 as well. Here is what happens when I try to compile the kernel. This example is an attempt to compile GENERIC: # time make depend all [etc, etc] cc -c -O1 -m486 -pipe -W -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Winline -Wunused -nostdinc -I. -I../.. -I../../sys -I../../../include -DI386_CPU -DI486_CPU -DI586_CPU -DI686_CPU -DAPM_BROKEN_STATCLOCK -DATAPI_STATIC -DATAPI -DFAILSAFE -DCOMPAT_43 -DCD9660 -DMSDOSFS -DNFS -DFFS -DINET -DKERNEL ../../net/if.c cc -c -O1 -m486 -pipe -W -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Winline -Wunused -nostdinc -I. -I../.. -I../../sys -I../../../include -DI386_CPU -DI486_CPU -DI586_CPU -DI686_CPU -DAPM_BROKEN_STATCLOCK -DATAPI_STATIC -DATAPI -DFAILSAFE -DCOMPAT_43 -DCD9660 -DMSDOSFS -DNFS -DFFS -DINET -DKERNEL ../../net/if_ethersubr.c ../../net/if_ethersubr.c: In function `ether_ioctl': ../../net/if_ethersubr.c:869: `ETHER_ADDR_LEN' undeclared (first use this function) ../../net/if_ethersubr.c:869: (Each undeclared identifier is reported only once ../../net/if_ethersubr.c:869: for each function it appears in.) *** Error code 1 Stop. 364.81 real 256.29 user 34.20 sys # My custom kernel, which is essentially GENERIC with unused drivers removed, also does this. If it matters, I use a wd8003 ethernet card.