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 [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message