From owner-freebsd-current@FreeBSD.ORG Wed Mar 27 20:54:49 2013 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id C222E624; Wed, 27 Mar 2013 20:54:49 +0000 (UTC) (envelope-from imb@protected-networks.net) Received: from sarah.protected-networks.net (sarah.protected-networks.net [IPv6:2001:470:1f07:4e1::1]) by mx1.freebsd.org (Postfix) with ESMTP id 966F4F72; Wed, 27 Mar 2013 20:54:49 +0000 (UTC) Received: from toshi.auburn.protected-networks.net (toshi.auburn.protected-networks.net [202.12.127.84]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "Iain Butler", Issuer "RSA Class 2 Personal CA v2" (verified OK)) (Authenticated sender: imb@protected-networks.net) by sarah.protected-networks.net (Postfix) with ESMTPSA id 10D80610E; Wed, 27 Mar 2013 16:54:41 -0400 (EDT) DomainKey-Signature: a=rsa-sha1; s=200509; d=protected-networks.net; c=nofws; q=dns; h=message-id:date:from:user-agent:mime-version:to:cc:subject: references:in-reply-to:x-enigmail-version:openpgp:content-type:content-transfer-encoding; b=Xkm2BYdxLGfKFsKbzfdHoLc3Auq/MNot9b/rF5QRF3CJl7qzU2Q32WmI34JG9t6ze GqRs1mXQR6Sy/fm5up66zysPw90kV+jKhek4qMNJ5e4MRnFgoRO3VwAB3BXfD0j Message-ID: <51535C90.7070507@protected-networks.net> Date: Wed, 27 Mar 2013 16:54:40 -0400 From: Michael Butler User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:17.0) Gecko/20130308 Thunderbird/17.0.4 MIME-Version: 1.0 To: Pawel Pekala Subject: Re: Ports including sys/time.h broken References: <20130327212819.1a28b2e1@FreeBSD.org> In-Reply-To: <20130327212819.1a28b2e1@FreeBSD.org> X-Enigmail-Version: 1.5.1 OpenPGP: id=0442D492 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 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: Wed, 27 Mar 2013 20:54:49 -0000 On 03/27/13 16:28, Pawel Pekala wrote: > For some time now (about month?) ports using sys/time.h include fail to > build and I`m sure they were building ok before. At least those seems > affected by this: > > math/atlas > math/openblas > x11-toolkits/c++-gtk-utils > > All fail with similar errors: > > /usr/include/sys/time.h:134:17: error: unknown type name 'sbintime_t' Rebuild whichever port of gcc you're using (gcc46?); it copies (and "fixes") some of the default include files for its own purposes. If it's behind, it'll be missing the addition of the sbintime_t typedef in types.h, imb