From patchwork Wed May 7 20:09:42 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 346813 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id B55CB1401D9 for ; Thu, 8 May 2014 06:13:19 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id A91C28628B; Wed, 7 May 2014 20:13:16 +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 J2De5iDETKvP; Wed, 7 May 2014 20:13:10 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 97D8586229; Wed, 7 May 2014 20:11:18 +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 2468A1D076D for ; Wed, 7 May 2014 20:10:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 1A3118C1EE for ; Wed, 7 May 2014 20:10:41 +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 f-XDPDGawqOC for ; Wed, 7 May 2014 20:10:38 +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 85FF78C09C for ; Wed, 7 May 2014 20:10:32 +0000 (UTC) Received: from fwd22.aul.t-online.de (fwd22.aul.t-online.de [172.20.26.127]) by mailout02.t-online.de (Postfix) with SMTP id BF208FD6BA for ; Wed, 7 May 2014 22:09:56 +0200 (CEST) Received: from fli4l.lan.fli4l (X7BJl-ZrZh2w+ajmc6c9QM9yADX7RRAPGEDLmqJkH4E8c-NTgitkqeLneTJheJYQ+N@[79.247.128.159]) by fwd22.t-online.de with esmtp id 1Wi8AT-0DlGl60; Wed, 7 May 2014 22:10:17 +0200 Received: from fli4lbuild64.lan.fli4l ([192.168.1.51]:41664) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.80.1) (envelope-from ) id 1Wi8AT-0004UJ-2I; Wed, 07 May 2014 22:10:17 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Wed, 7 May 2014 22:09:42 +0200 Message-Id: <1399493406-7247-9-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1399493406-7247-1-git-send-email-bernd.kuhls@t-online.de> References: <1399493406-7247-1-git-send-email-bernd.kuhls@t-online.de> X-ID: X7BJl-ZrZh2w+ajmc6c9QM9yADX7RRAPGEDLmqJkH4E8c-NTgitkqeLneTJheJYQ+N X-TOI-MSGID: ab527524-910d-412e-8ef2-256aee0152aa Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v5 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 1708a3e..09d7fab 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 \