From patchwork Fri May 24 13:46:46 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Will Newton X-Patchwork-Id: 246144 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 7951B2C0174 for ; Fri, 24 May 2013 23:46:52 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 898D5A0353; Fri, 24 May 2013 13:46:48 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id LI9v1qohjJAP; Fri, 24 May 2013 13:46:47 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id A7382A0119; Fri, 24 May 2013 13:46:47 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 601068F79E for ; Fri, 24 May 2013 13:46:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 87AF4A0119 for ; Fri, 24 May 2013 13:46:46 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id BNo4xCPtIxGt for ; Fri, 24 May 2013 13:46:45 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ob0-f171.google.com (mail-ob0-f171.google.com [209.85.214.171]) by hemlock.osuosl.org (Postfix) with ESMTPS id 44100A007D for ; Fri, 24 May 2013 13:46:45 +0000 (UTC) Received: by mail-ob0-f171.google.com with SMTP id ef5so5468627obb.2 for ; Fri, 24 May 2013 06:46:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=Fcwd0lEYJoSidT3Y2qcnSpHTu59RYtJ7LK+R5u1J5FM=; b=jOYuHv+0Qk8LClctL7/xpPkFRYcmmlOOJJvij9jj8aj57CWkbsO6u2Ha/mhPudSrmY FhQZJGQxFWXFXAL1tTdQJrzPRlRFBM77hisd9lgQj3inbIRp5pDNGDvwe3GwewFMmTG9 2Ig9VqH5XcsID+RxcQdcwC0ntTzUwcDcuefe9vyzT032btT2UYJZODGb0T1xU7IZp3/y AyS7e++1w6rGUbj+4RyLE/3ZDLmWpPDOw41nt4YgilbvGKakslnvLIJ30V+83gavyRG8 hm6t+cVqriOBZpa6A20f5QOV34//bJy3cHdp8g7oew4YJI8NJyO5SqDMFlL0G9bAzdke JSfg== MIME-Version: 1.0 X-Received: by 10.182.237.6 with SMTP id uy6mr10263033obc.31.1369403206816; Fri, 24 May 2013 06:46:46 -0700 (PDT) Received: by 10.76.120.68 with HTTP; Fri, 24 May 2013 06:46:46 -0700 (PDT) Date: Fri, 24 May 2013 14:46:46 +0100 Message-ID: From: Will Newton To: Buildroot List Subject: [Buildroot] [PATCH] weston: Add make dependency on cairo. X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net There's already a config dependency, make sure we build it too. Signed-off-by: Will Newton Acked-by: Thomas Petazzoni --- package/weston/weston.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -- 1.8.1.4 diff --git a/package/weston/weston.mk b/package/weston/weston.mk index 4e7cada..b6827db 100644 --- a/package/weston/weston.mk +++ b/package/weston/weston.mk @@ -10,7 +10,8 @@ WESTON_SOURCE = weston-$(WAYLAND_VERSION).tar.xz WESTON_LICENSE = MIT WESTON_LICENSE_FILES = COPYING -WESTON_DEPENDENCIES = wayland libxkbcommon pixman libpng jpeg mtdev udev +WESTON_DEPENDENCIES = wayland libxkbcommon pixman libpng \ + jpeg mtdev udev cairo WESTON_CONF_OPT = \ --disable-egl \ --disable-xwayland \