From patchwork Sat May 10 10:02:20 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 347626 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 68ABF1400A0 for ; Sat, 10 May 2014 20:03:41 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 988AB32C55; Sat, 10 May 2014 10:03:40 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EiH1Kc02O8Or; Sat, 10 May 2014 10:03:37 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id D6EC232BDD; Sat, 10 May 2014 10:03:14 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id DFDCF1CEAD3 for ; Sat, 10 May 2014 10:03:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id DC59C8B5C8 for ; Sat, 10 May 2014 10:03:02 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id im3ldoi4jhQm for ; Sat, 10 May 2014 10:03:01 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout02.t-online.de (mailout02.t-online.de [194.25.134.17]) by whitealder.osuosl.org (Postfix) with ESMTPS id 4E43C8C2EA for ; Sat, 10 May 2014 10:03:01 +0000 (UTC) Received: from fwd24.aul.t-online.de (fwd24.aul.t-online.de [172.20.26.129]) by mailout02.t-online.de (Postfix) with SMTP id 39DF17B9C7 for ; Sat, 10 May 2014 12:02:13 +0200 (CEST) Received: from fli4l.lan.fli4l (Z4pbPaZUYhHLM+ca4Wl6TpDbciOe1TO+29x-m+t8Zj+H+ovpL9CPQT72f3cJOJIgUz@[87.146.221.121]) by fwd24.t-online.de with esmtp id 1Wj47O-0p64Se0; Sat, 10 May 2014 12:02:58 +0200 Received: from fli4lbuild64.lan.fli4l ([192.168.1.51]:59593) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.80.1) (envelope-from ) id 1Wj47N-00052Y-CD; Sat, 10 May 2014 12:02:57 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sat, 10 May 2014 12:02:20 +0200 Message-Id: <1399716164-6452-9-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1399716164-6452-1-git-send-email-bernd.kuhls@t-online.de> References: <1399716164-6452-1-git-send-email-bernd.kuhls@t-online.de> X-ID: Z4pbPaZUYhHLM+ca4Wl6TpDbciOe1TO+29x-m+t8Zj+H+ovpL9CPQT72f3cJOJIgUz X-TOI-MSGID: 50715644-5fbf-42da-90f5-a14103a40427 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v6 08/32] mesa3d: Add dri3 support 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: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Bernd Kuhls --- package/mesa3d/mesa3d.mk | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/package/mesa3d/mesa3d.mk b/package/mesa3d/mesa3d.mk index 23ab5e9..5070d08 100644 --- a/package/mesa3d/mesa3d.mk +++ b/package/mesa3d/mesa3d.mk @@ -22,6 +22,13 @@ MESA3D_DEPENDENCIES = \ host-xutil_makedepend \ libdrm +ifeq ($(BR2_PACKAGE_XPROTO_DRI3PROTO),y) +MESA3D_DEPENDENCIES += xproto_dri3proto +MESA3D_CONF_OPT += --enable-dri3 +else +MESA3D_CONF_OPT += --disable-dri3 +endif + ifeq ($(BR2_PACKAGE_XORG7),y) MESA3D_DEPENDENCIES += \ xproto_xf86driproto \