From owner-freebsd-stable@freebsd.org Fri Oct 27 15:27:50 2017 Return-Path: Delivered-To: freebsd-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3B9EFE486CF for ; Fri, 27 Oct 2017 15:27:50 +0000 (UTC) (envelope-from freebsd@omnilan.de) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 20C336A4B9 for ; Fri, 27 Oct 2017 15:27:50 +0000 (UTC) (envelope-from freebsd@omnilan.de) Received: by mailman.ysv.freebsd.org (Postfix) id 203B7E486CD; Fri, 27 Oct 2017 15:27:50 +0000 (UTC) Delivered-To: stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1FEEEE486C7 for ; Fri, 27 Oct 2017 15:27:50 +0000 (UTC) (envelope-from freebsd@omnilan.de) Received: from mx0.gentlemail.de (mx0.gentlemail.de [IPv6:2a00:e10:2800::a130]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B2F776A4B8; Fri, 27 Oct 2017 15:27:49 +0000 (UTC) (envelope-from freebsd@omnilan.de) Received: from mh0.gentlemail.de (ezra.dcm1.omnilan.net [78.138.80.135]) by mx0.gentlemail.de (8.14.5/8.14.5) with ESMTP id v9RFRgQP068708; Fri, 27 Oct 2017 17:27:42 +0200 (CEST) (envelope-from freebsd@omnilan.de) Received: from titan.inop.mo1.omnilan.net (s1.omnilan.de [217.91.127.234]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mh0.gentlemail.de (Postfix) with ESMTPSA id 5E3152AA; Fri, 27 Oct 2017 17:27:42 +0200 (CEST) Message-ID: <59F3506E.1030206@omnilan.de> Date: Fri, 27 Oct 2017 17:27:42 +0200 From: Harry Schmalzbauer Organization: OmniLAN User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; de-DE; rv:1.9.2.8) Gecko/20100906 Lightning/1.0b2 Thunderbird/3.1.2 MIME-Version: 1.0 To: Konstantin Belousov CC: David Wolfskill , stable@freebsd.org, Bryan Drewery Subject: Re: buildworld fail in stable/11 @r325033 -- r325029? References: <20171027111254.GJ1159@albert.catwhisker.org> <20171027144218.GG2566@kib.kiev.ua> In-Reply-To: <20171027144218.GG2566@kib.kiev.ua> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Greylist: ACL 129 matched, not delayed by milter-greylist-4.2.7 (mx0.gentlemail.de [78.138.80.130]); Fri, 27 Oct 2017 17:27:42 +0200 (CEST) X-Milter: Spamilter (Reciever: mx0.gentlemail.de; Sender-ip: 78.138.80.135; Sender-helo: mh0.gentlemail.de; ) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Oct 2017 15:27:50 -0000 Bezüglich Konstantin Belousov's Nachricht vom 27.10.2017 16:42 (localtime): > On Fri, Oct 27, 2017 at 04:12:54AM -0700, David Wolfskill wrote: >> This is observed on systems (both my laptop & my build machine) running >> stable/11 @r325003, after updating sources to r325033: >> >> --- libprocstat.o --- >> In file included from /usr/src/lib/libprocstat/libprocstat.c:69: >> /usr/obj/usr/src/tmp/usr/include/sys/ptrace.h:148:19: error: field has incomplete type 'struct siginfo32' >> struct siginfo32 pl_siginfo; /* siginfo for signal */ >> ^ >> /usr/obj/usr/src/tmp/usr/include/sys/ptrace.h:148:9: note: forward declaration of 'struct siginfo32' >> struct siginfo32 pl_siginfo; /* siginfo for signal */ >> ^ >> >> I don't know that r325029 is to blame, but that was the last commit >> in that area (in the range r325003 - r325033). And there wwer not >> very many commits to stable/11 in that range: > Can you confirm that the following patch allows your system to build ? > > Index: lib/libprocstat/libprocstat.c > =================================================================== > --- lib/libprocstat/libprocstat.c (revision 325038) > +++ lib/libprocstat/libprocstat.c (working copy) > @@ -63,10 +63,10 @@ > #include > #include > #include > +#include > #define _KERNEL > #include > #include > -#include > #include > #include > #include > Index: . > =================================================================== > --- . (revision 325038) > +++ . (working copy) > Confirmed. Sorry for the obsolete last post. It's been in the pipeline for build time and haven't checked that you already posted the solution! -harry