From owner-svn-src-head@FreeBSD.ORG Wed Oct 30 17:49:57 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 97AA4FFF for ; Wed, 30 Oct 2013 17:49:57 +0000 (UTC) (envelope-from andre@freebsd.org) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E56C225B0 for ; Wed, 30 Oct 2013 17:49:56 +0000 (UTC) Received: (qmail 63363 invoked from network); 30 Oct 2013 18:20:16 -0000 Received: from c00l3r.networx.ch (HELO [127.0.0.1]) ([62.48.2.2]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 30 Oct 2013 18:20:16 -0000 Message-ID: <527146AD.4060905@freebsd.org> Date: Wed, 30 Oct 2013 18:49:33 +0100 From: Andre Oppermann User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.0.1 MIME-Version: 1.0 To: Sergey Kandaurov Subject: Re: svn commit: r257391 - in head/sys: dev/snc mips/nlm/dev/net References: <201310301656.r9UGul3V061251@svn.freebsd.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Oct 2013 17:49:57 -0000 On 30.10.2013 18:40, Sergey Kandaurov wrote: > On 30 October 2013 20:56, Andre Oppermann wrote: >> Author: andre >> Date: Wed Oct 30 16:56:46 2013 >> New Revision: 257391 >> URL: http://svnweb.freebsd.org/changeset/base/257391 >> >> Log: >> nclude missing net/if_var.h. >> >> Due to header pollution it wasn't noticed before. >> >> Modified: >> head/sys/dev/snc/dp83932.c >> head/sys/mips/nlm/dev/net/xlpge.c >> >> Modified: head/sys/dev/snc/dp83932.c >> ============================================================================== >> --- head/sys/dev/snc/dp83932.c Wed Oct 30 16:34:26 2013 (r257390) >> +++ head/sys/dev/snc/dp83932.c Wed Oct 30 16:56:46 2013 (r257391) >> @@ -74,6 +74,7 @@ >> >> #include >> #include >> +#include >> #include >> #include >> #include >> >> Modified: head/sys/mips/nlm/dev/net/xlpge.c >> ============================================================================== >> --- head/sys/mips/nlm/dev/net/xlpge.c Wed Oct 30 16:34:26 2013 (r257390) >> +++ head/sys/mips/nlm/dev/net/xlpge.c Wed Oct 30 16:56:46 2013 (r257391) >> @@ -47,6 +47,7 @@ __FBSDID("$FreeBSD$"); >> #include >> >> #include >> +#include >> #include >> #include >> #include > > To complete TARGET=pc98 KERNCONF=GENERIC crossbuild, > I had to apply also this change: Please commit. :) -- Andre > Index: sys/dev/snc/if_snc.c > =================================================================== > --- sys/dev/snc/if_snc.c (revision 257391) > +++ sys/dev/snc/if_snc.c (working copy) > @@ -48,6 +48,7 @@ __FBSDID("$FreeBSD$"); > #include > #include > #include > +#include > > #include > #include > Index: sys/dev/snc/if_snc_pccard.c > =================================================================== > --- sys/dev/snc/if_snc_pccard.c (revision 257391) > +++ sys/dev/snc/if_snc_pccard.c (working copy) > @@ -41,6 +41,8 @@ __FBSDID("$FreeBSD$"); > #include > #include > #include > +#include > +#include > > #include > #include >