Date: Wed, 29 Jul 1998 00:43:21 +1000 From: Bruce Evans <bde@zeta.org.au> To: current@FreeBSD.ORG, phk@FreeBSD.ORG Subject: Re: make world failure... Message-ID: <199807281443.AAA11114@godzilla.zeta.org.au>
next in thread | raw e-mail | index | archive | help
>cc -O -pipe -DLIBC_RCS -DSYSLIBC_RCS -I/usr/src/lib/libc/include -D__DBINTERFACE >_PRIVATE -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libc/locale -DBROKEN_DES -DYP -I >/usr/obj/usr/src/tmp/usr/include -c /usr/src/lib/libc/../libc/i386/sys/i386_get_ >ldt.c -o i386_get_ldt.o >In file included from /usr/src/lib/libc/../libc/i386/sys/i386_get_ldt.c:37: >/usr/obj/usr/src/tmp/usr/include/machine/sysarch.h:58: parse error before `*' >/usr/obj/usr/src/tmp/usr/include/machine/sysarch.h:59: parse error before `int' >*** Error code 1 > >I think it is the "u_int" it barfs on... Fix: s/u_int/unsigned/g (or unsigned int if you want to be verbose). The new ioperm man pages and the old get/set ldt man pages are also broken by this (they don't say that <sys/types.h> must be included before <machine/sysarch.h>. OTOH, the new ioperm implementations avoid this bug by including <sys/types.h>. The ioperm man pages also specify u_int. Bruce 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?199807281443.AAA11114>