From owner-freebsd-current@FreeBSD.ORG Sun May 18 03:38:36 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F13CF37B401; Sun, 18 May 2003 03:38:34 -0700 (PDT) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D64C43FCB; Sun, 18 May 2003 03:38:33 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id UAA32625; Sun, 18 May 2003 20:38:25 +1000 Date: Sun, 18 May 2003 20:38:24 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Kris Kennaway In-Reply-To: <20030518095127.GA74158@rot13.obsecurity.org> Message-ID: <20030518202656.G19400@gamplex.bde.org> References: <20030314103543.GB872@rot13.obsecurity.org> <20030314114123.A24654@espresso.bsdmike.org> <20030319022339.GA4946@rot13.obsecurity.org> <20030327231125.GB16625@rot13.obsecurity.org> <20030328222823.GD23305@rot13.obsecurity.org> <20030518095127.GA74158@rot13.obsecurity.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: current@freebsd.org Subject: Re: Ports broken due to -current change (Re: Ports broken on ia64) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 May 2003 10:38:37 -0000 On Sun, 18 May 2003, Kris Kennaway wrote: > On Fri, Mar 28, 2003 at 02:28:23PM -0800, Kris Kennaway wrote: > > On Fri, Mar 28, 2003 at 10:28:07AM -0500, Mike Barcroft wrote: > > > Kris Kennaway writes: > > > > On Tue, Mar 18, 2003 at 09:31:48PM -0500, Mike Barcroft wrote: > > > > > > > > > > stat.h: > > > > > > $FreeBSD: src/sys/sys/stat.h,v 1.34 2003/03/14 16:09:48 mike Exp $ > > > > > > > > > > I think I see the problem. I'll try to get a fix committed by > > > > > tonight. > > > > > > > > Still appears to be broken with r1.35: > > > > > > Ugh. The next revision and associated changes fixes it (I actually > > > tested it against osh). > > > > OK, I'll update again. Thanks! > > I'm still seeing a problem here: > > http://bento.freebsd.org/errorlogs/i386-5-latest/gnu-finger-1.37.log > > In file included from os.c:24: > /usr/include/sys/stat.h:168: sizeof applied to an incomplete type > /usr/include/sys/stat.h:169: sizeof applied to an incomplete type > /usr/include/sys/stat.h:168: warning: width of `((anonymous))' exceeds its type > /usr/include/sys/stat.h:169: warning: width of `((anonymous))' exceeds its type Untested fix: %%% Index: stat.h =================================================================== RCS file: /home/ncvs/src/sys/sys/stat.h,v retrieving revision 1.36 diff -u -2 -r1.36 stat.h --- stat.h 28 Mar 2003 15:27:30 -0000 1.36 +++ stat.h 18 May 2003 10:26:10 -0000 @@ -101,5 +101,5 @@ #endif -#ifndef __BSD_VISIBLE +#if !__BSD_VISIBLE #include #endif %%% "find /usr/include/ | grep _VISIBLE | egrep(ifdef|ifndef|defined)" shows similar bugs in . Bruce