From owner-svn-src-all@FreeBSD.ORG Sat Jan 24 19:27:48 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 521A7B61; Sat, 24 Jan 2015 19:27:48 +0000 (UTC) Received: from mail-pa0-x231.google.com (mail-pa0-x231.google.com [IPv6:2607:f8b0:400e:c03::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1C89668E; Sat, 24 Jan 2015 19:27:48 +0000 (UTC) Received: by mail-pa0-f49.google.com with SMTP id fa1so3741093pad.8; Sat, 24 Jan 2015 11:27:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=references:mime-version:in-reply-to:content-type :content-transfer-encoding:message-id:cc:from:subject:date:to; bh=FxM8tyfjVWQYeAek09eDEOMkYLFKcnjLUQcYSs+TgCA=; b=MSEklTIYx4Hy1copbKvCd4cnbfvDY1P47sC3tKixmi+ll6J3KKrNgDDVegNEGnuWZ/ Qu1TM5QfSiZDBoKlSefHON8HT+VxqgW16sIcATYBIlTOZQ1eW/kdYo00rtrJxa5U6kOP BNaApHHXPu2IrztWNBwtJj/6GvG9+k63zxYg+hjSUW+34esK6WA8JvZl7YEkAw8ui+el NkkwPn0aDU1NNREKGbBV8utAQQgkcFSNH84l2TG7Ne1m3r2P0Y+8rXRGkBBTJeC7ICWo N1p0HAkzC13uL2ebUMBCPe9a+mYFGFjg8NK5bSP5/ndV8BLjEOB1X6/aWxdkDBSYva3J xKpg== X-Received: by 10.68.226.69 with SMTP id rq5mr21970833pbc.116.1422127667583; Sat, 24 Jan 2015 11:27:47 -0800 (PST) Received: from [192.168.20.11] (c-98-247-240-204.hsd1.wa.comcast.net. [98.247.240.204]) by mx.google.com with ESMTPSA id kr10sm5503540pdb.42.2015.01.24.11.27.46 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 24 Jan 2015 11:27:46 -0800 (PST) References: <201501241549.t0OFnfHK037939@svn.freebsd.org> Mime-Version: 1.0 (1.0) In-Reply-To: <201501241549.t0OFnfHK037939@svn.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Message-Id: X-Mailer: iPhone Mail (12B440) From: Garrett Cooper Subject: Re: svn commit: r277648 - in head: contrib/netbsd-tests/lib/libc/c063 lib/libc/tests/c063 Date: Sat, 24 Jan 2015 11:27:45 -0800 To: Jilles Tjoelker Cc: "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jan 2015 19:27:48 -0000 > On Jan 24, 2015, at 07:49, Jilles Tjoelker wrote: >=20 > Author: jilles > Date: Sat Jan 24 15:49:40 2015 > New Revision: 277648 > URL: https://svnweb.freebsd.org/changeset/base/277648 >=20 > Log: > Enable utimensat tests from NetBSD. >=20 > As with other tests from c063, a required #include was missi= ng. >=20 > Modified: > head/contrib/netbsd-tests/lib/libc/c063/t_utimensat.c > head/lib/libc/tests/c063/Makefile >=20 > Modified: head/contrib/netbsd-tests/lib/libc/c063/t_utimensat.c > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D > --- head/contrib/netbsd-tests/lib/libc/c063/t_utimensat.c Sat Jan 24 15= :40:52 2015 (r277647) > +++ head/contrib/netbsd-tests/lib/libc/c063/t_utimensat.c Sat Jan 24 15= :49:40 2015 (r277648) > @@ -40,6 +40,9 @@ __RCSID("$NetBSD: t_utimensat.c,v 1.5 20 > #include > #include > #include > +#ifdef __FreeBSD__ > +#include > +#endif > #include >=20 > #define DIR "dir" Thanks jilles!=