From patchwork Mon Jan 28 18:30:37 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Gall X-Patchwork-Id: 14312 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 0AF2223E2E for ; Mon, 28 Jan 2013 18:30:57 +0000 (UTC) Received: from mail-vc0-f173.google.com (mail-vc0-f173.google.com [209.85.220.173]) by fiordland.canonical.com (Postfix) with ESMTP id 888E0A18D4B for ; Mon, 28 Jan 2013 18:30:56 +0000 (UTC) Received: by mail-vc0-f173.google.com with SMTP id fy7so2082037vcb.32 for ; Mon, 28 Jan 2013 10:30:56 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:x-forwarded-to:x-forwarded-for:delivered-to:x-received :received-spf:x-received:from:to:cc:subject:date:message-id:x-mailer :x-gm-message-state; bh=S9cBSYFOV94bVqyN5R7L2UwF/FR6KutlA3v5BgPmAK4=; b=ntWQd6WrFlXcRfIX3RWx2gC5/ItDU/XC/tQdwZXmG9G9F5sHxIsKUWYR/4Bd2frmxi 37XJyblv5Uh3k2JrcW0DUaMQsbMtCpqWkgWH+NYbV/d7G8Y59/tuJ0eTKvfFbP1sStTe iNECk4ZV/Xu/9hQg71lAp1QdcxXRU87XBNzQ5AnQEMfqJFpSgNSFOc4p78ygOAKweOiV wG+z+0SjQN57hAinjWt7QoiYUw4f92e6r6G70lm5yI64udnXFPaj53GwwGD3G4wC3s1T FcPFIDyAchSmApsjfFjb+m/72KS/gVPfX7Q6TXtRPXtsdOj0saetlLt8SWOHiklk99VQ w8Mg== X-Received: by 10.220.39.69 with SMTP id f5mr15992210vce.45.1359397856015; Mon, 28 Jan 2013 10:30:56 -0800 (PST) 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.58.145.101 with SMTP id st5csp98350veb; Mon, 28 Jan 2013 10:30:55 -0800 (PST) X-Received: by 10.50.57.234 with SMTP id l10mr5618374igq.18.1359397854820; Mon, 28 Jan 2013 10:30:54 -0800 (PST) Received: from mail-ie0-x22d.google.com (ie-in-x022d.1e100.net [2607:f8b0:4001:c03::22d]) by mx.google.com with ESMTPS id cf7si9328176icc.30.2013.01.28.10.30.54 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 28 Jan 2013 10:30:54 -0800 (PST) Received-SPF: neutral (google.com: 2607:f8b0:4001:c03::22d is neither permitted nor denied by best guess record for domain of tom.gall@linaro.org) client-ip=2607:f8b0:4001:c03::22d; Authentication-Results: mx.google.com; spf=neutral (google.com: 2607:f8b0:4001:c03::22d is neither permitted nor denied by best guess record for domain of tom.gall@linaro.org) smtp.mail=tom.gall@linaro.org Received: by mail-ie0-f173.google.com with SMTP id 9so114715iec.32 for ; Mon, 28 Jan 2013 10:30:54 -0800 (PST) X-Received: by 10.50.216.200 with SMTP id os8mr5794418igc.74.1359397854174; Mon, 28 Jan 2013 10:30:54 -0800 (PST) Received: from mars.mantorvilleexpress.com ([70.35.96.184]) by mx.google.com with ESMTPS id c3sm6835581igj.1.2013.01.28.10.30.51 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 28 Jan 2013 10:30:52 -0800 (PST) From: Tom Gall To: piglit@lists.freedesktop.org Cc: patches@linaro.org, Tom Gall Subject: [PATCH 1/3] android: piglit-vbo.cpp compile error Date: Mon, 28 Jan 2013 12:30:37 -0600 Message-Id: <1359397839-24285-1-git-send-email-tom.gall@linaro.org> X-Mailer: git-send-email 1.7.10.4 X-Gm-Message-State: ALoCoQnSqwBaXdnf31TawmMPg5+z8dmEQ98BrIRH/CePC37ykRo6bCtpnix4XfH4qjt1PmItnUug Android is a bit more strict when it builds. Missing was ctype.h. It doesn't break Linux. Signed-off-by: Tom Gall Reviewed-by: Ian Romanick --- tests/util/piglit-vbo.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/util/piglit-vbo.cpp b/tests/util/piglit-vbo.cpp index 4900931..b2e2e63 100644 --- a/tests/util/piglit-vbo.cpp +++ b/tests/util/piglit-vbo.cpp @@ -93,6 +93,7 @@ #include #include #include +#include #include "piglit-util-gl-common.h" #include "piglit-vbo.h"