From patchwork Wed Jul 18 14:10:26 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 10123 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 7F7DB23E56 for ; Wed, 18 Jul 2012 14:10:44 +0000 (UTC) Received: from mail-yx0-f180.google.com (mail-yx0-f180.google.com [209.85.213.180]) by fiordland.canonical.com (Postfix) with ESMTP id 4F3FBA180E3 for ; Wed, 18 Jul 2012 14:10:44 +0000 (UTC) Received: by mail-yx0-f180.google.com with SMTP id q6so1722279yen.11 for ; Wed, 18 Jul 2012 07:10:44 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=cOKx48m4ebs3n4HLcstfM4Mo6cU+L65g2nTs7wPyPtc=; b=TY94PIuixyFOvPlTbyakzCPwBWaO3r2a6PHez5glQXmavNruRRJKlntbopOkS+gir8 jSnbJIMoHAXvI6Y5Eneq9/NdmdARuvRQWkPXu+rwXxaX6CJVsXqduc5dRGJfavbn4MYR FskAHDVpO5zMkbQ6/wlIKpOKYc88XS4F46Iza4qc8fFORBwxk+SU0ahyZb3ExZDjfkge CuoAEvEt//jq1jELV53Rp1o7Y0caRMSX+xZpe+taY3htEtL+6ssmHfkrRpVKClESy+06 xz2xq4oieCTBMbXWY5pVLhVQarwKFCt/QUoIiINnURZJhx7FD6C7FLKn2dEza6wLAr5k lI2g== Received: by 10.50.87.227 with SMTP id bb3mr2090216igb.57.1342620643680; Wed, 18 Jul 2012 07:10:43 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.153.7 with SMTP id i7csp260ibw; Wed, 18 Jul 2012 07:10:40 -0700 (PDT) Received: by 10.216.102.131 with SMTP id d3mr600818weg.151.1342620638990; Wed, 18 Jul 2012 07:10:38 -0700 (PDT) Received: from mnementh.archaic.org.uk (mnementh.archaic.org.uk. [81.2.115.146]) by mx.google.com with ESMTPS id g6si17224533wee.24.2012.07.18.07.10.38 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 18 Jul 2012 07:10:38 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) client-ip=81.2.115.146; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) smtp.mail=pm215@archaic.org.uk Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.72) (envelope-from ) id 1SrUxQ-0003KO-Lm; Wed, 18 Jul 2012 15:10:28 +0100 From: Peter Maydell To: qemu-devel@nongnu.org Cc: patches@linaro.org, Stefan Weil Subject: [PATCH 09/11] configure: Fix compile warning in utimensat/futimens test Date: Wed, 18 Jul 2012 15:10:26 +0100 Message-Id: <1342620628-12751-10-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1342620628-12751-1-git-send-email-peter.maydell@linaro.org> References: <1342620628-12751-1-git-send-email-peter.maydell@linaro.org> X-Gm-Message-State: ALoCoQlwUPhBKRxcZWrNF97rG1cWcxdQyVo2+ouuGtgKEB8i8uCgO3j9z9cibBXg3omdvzugY4/3 Fix compile warning in the utimensat/futimens test ("implicit declaration of function 'utimensat'", ditto futimens) by adding a missing include. Signed-off-by: Peter Maydell Reviewed-by: Stefan Weil --- configure | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 9c2a84d..638e486 100755 --- a/configure +++ b/configure @@ -2341,6 +2341,7 @@ cat > $TMPC << EOF #define _ATFILE_SOURCE #include #include +#include int main(void) {