From owner-freebsd-current Sun Sep 2 1: 5:14 2001 Delivered-To: freebsd-current@freebsd.org Received: from tasogare.imasy.or.jp (tasogare.imasy.or.jp [202.227.24.5]) by hub.freebsd.org (Postfix) with ESMTP id C325337B401 for ; Sun, 2 Sep 2001 01:05:11 -0700 (PDT) Received: from localhost (iwasaki.imasy.or.jp [202.227.24.92]) by tasogare.imasy.or.jp (8.11.6+3.4W/8.11.6/tasogare) with ESMTP/inet id f8284vm33349; Sun, 2 Sep 2001 17:04:57 +0900 (JST) (envelope-from iwasaki@jp.FreeBSD.org) To: dwcjr@inethouston.net Cc: current@freebsd.org Subject: Re: newer buildkernel failure In-Reply-To: <20010902020831.A11987@leviathan.inethouston.net> References: <20010902020831.A11987@leviathan.inethouston.net> X-Mailer: Mew version 1.94.1 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20010902170456J.iwasaki@jp.FreeBSD.org> Date: Sun, 02 Sep 2001 17:04:56 +0900 From: Mitsuru IWASAKI X-Dispatcher: imput version 20000228(IM140) Lines: 31 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, > The patch committed just 20 mins ago to fix the breakage causes this > now, unless I caught it in the middle of a commit. > > > perl @/kern/makeobjops.pl -h @/dev/pci/pcib_if.m > perl @/kern/makeobjops.pl -h @/isa/isa_if.m > make -f /usr/src/sys/modules/acpi/../../i386/acpica/Makefile > MAKESRCPATH=/usr/src/sys/modules/acpi/../../i386/acpica > cc -nostdinc -O -pipe -march=k6 -march=k6 ^^^^^^^^^ Because of -nostdinc option, I think. Does following patch solve the problem? Index: Makefile =================================================================== RCS file: /home/ncvs/src/sys/i386/acpica/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- Makefile 20 Jul 2001 06:07:31 -0000 1.1 +++ Makefile 2 Sep 2001 07:55:41 -0000 @@ -9,6 +9,7 @@ MAKESRCPATH= ${.CURDIR} CLEANFILES= acpi_wakecode.h acpi_wakecode.bin acpi_wakecode.o .endif +CFLAGS+= -I. all: acpi_wakecode.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message