From patchwork Sat Dec 12 19:55:38 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Andr=C3=A9_Zwing?= X-Patchwork-Id: 556074 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 13BD514031F for ; Sun, 13 Dec 2015 06:56:02 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=dawncrow.de header.i=@dawncrow.de header.b=HWaGT/pC; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 546DA95F73; Sat, 12 Dec 2015 19:56:01 +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 tlOxtYOvn1Hw; Sat, 12 Dec 2015 19:55:58 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 6CD2795F74; Sat, 12 Dec 2015 19:55:58 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 75A3C1C0688 for ; Sat, 12 Dec 2015 19:55:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 7096F92DB8 for ; Sat, 12 Dec 2015 19:55:56 +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 Sw7Ua1KOfobo for ; Sat, 12 Dec 2015 19:55:55 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mo4-p00-ob.smtp.rzone.de (mo4-p00-ob.smtp.rzone.de [81.169.146.161]) by whitealder.osuosl.org (Postfix) with ESMTPS id C116C92DB4 for ; Sat, 12 Dec 2015 19:55:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1449950151; l=940; s=domk; d=dawncrow.de; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Date:To:Subject: From; bh=EzOJeeq7nO5CdcyUJauAhRQF+gz1QlX1Ory2Sl+WTQY=; b=HWaGT/pCZRbnPSwNtCiWjBO8QvssQKZZvndM/5VdxbySnV0eiucTfyzL0eZ3YYVlIhi 1ifp6dkhs3z6oIfrSiuXJOwbSrnORdfZ/upHwst3/Lqjei8srpADwRda/TPi/NaIu2APC 61Rb0fyBR9VA6zaR2/hEqE5jtByV1X7hpu4= X-RZG-AUTH: :ImkWY2CseuihIZy6ZWWciR6unPh5JPSWE7VxbdUCFBN5njG7Q28CH4dMeHLjXw== X-RZG-CLASS-ID: mo00 Received: from [192.168.178.40] ([185.61.122.196]) by smtp.strato.de (RZmta 37.14 AUTH) with ESMTPSA id d05262rBCJtmgen (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA (curve secp521r1 with 521 ECDH bits, eq. 15360 bits RSA)) (Client did not present a certificate) for ; Sat, 12 Dec 2015 20:55:48 +0100 (CET) From: =?UTF-8?Q?Andr=c3=a9_Hentschel?= To: buildroot@buildroot.org Message-ID: <566C7BBA.3010009@dawncrow.de> Date: Sat, 12 Dec 2015 20:55:38 +0100 User-Agent: Mozilla/5.0 (X11; Linux i686; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 Subject: [Buildroot] [PATCH] wine: Add OSMesa dependency X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 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" We have support for building the OSMesa lib since 81537f284f62c6586d50bd5cca78c2bf1375b88c Signed-off-by: André Hentschel --- package/wine/wine.mk | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/package/wine/wine.mk b/package/wine/wine.mk index 38576db..1a1fea0 100644 --- a/package/wine/wine.mk +++ b/package/wine/wine.mk @@ -27,7 +27,6 @@ WINE_CONF_OPTS = \ --without-hal \ --without-openal \ --without-opencl \ - --without-osmesa \ --without-oss # Wine uses a wrapper around gcc, and uses the value of --host to @@ -171,6 +170,13 @@ else WINE_CONF_OPTS += --without-ldap endif +ifeq ($(BR2_PACKAGE_MESA3D_OSMESA),y) +WINE_CONF_OPTS += --with-osmesa +WINE_DEPENDENCIES += mesa3d +else +WINE_CONF_OPTS += --without-osmesa +endif + ifeq ($(BR2_PACKAGE_SANE_BACKENDS),y) WINE_CONF_OPTS += --with-sane WINE_DEPENDENCIES += sane-backends