From patchwork Sat Mar 21 15:38:23 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: 452952 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id B52D0140146 for ; Sun, 22 Mar 2015 02:38:37 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="verification failed; unprotected key" header.d=dawncrow.de header.i=@dawncrow.de header.b=d+OMWw3A; dkim-adsp=none (unprotected policy); dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 1191AA3807; Sat, 21 Mar 2015 15:38:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id liPCiZ4fEPDb; Sat, 21 Mar 2015 15:38:36 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 3754DA37A8; Sat, 21 Mar 2015 15:38:36 +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 9DB0B1C293D for ; Sat, 21 Mar 2015 15:38:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 987DD92486 for ; Sat, 21 Mar 2015 15:38:35 +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 w545zsYzfZTy for ; Sat, 21 Mar 2015 15:38:34 +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.216]) by whitealder.osuosl.org (Postfix) with ESMTPS id CEBE292465 for ; Sat, 21 Mar 2015 15:38:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1426952310; l=801; s=domk; d=dawncrow.de; h=Content-Transfer-Encoding:Content-Type:Subject:To:MIME-Version:From: Date; bh=GYNgq/1khJvmBfShiWW8kAobHrNK1xrraRUkr6joPzU=; b=d+OMWw3AualLF7rCRl0aXCxwjaFGh//mo+qU5Z8n4N7O3vfRfm1JW3wFfqRQWJXEapc wAimLcER9F7B3zJITXJnWjLD3h1tWCh5Nl7uEI8ltnHX+waW0QBFomkgn7h9d82MLAcN/ +rmsBwKlpldSH+5QWsny+CLTAy6clHFUlBo= X-RZG-AUTH: :ImkWY2CseuihIZy6ZWWciR6unPh5JPSWE7VxbdUCFBN5njG7Q28CH4RMeHnmXw== X-RZG-CLASS-ID: mo00 Received: from [192.168.178.50] ([185.61.121.123]) by smtp.strato.de (RZmta 37.4 AUTH) with ESMTPSA id V025c5r2LFcUlea (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) for ; Sat, 21 Mar 2015 16:38:30 +0100 (CET) Message-ID: <550D906F.5030609@dawncrow.de> Date: Sat, 21 Mar 2015 16:38:23 +0100 From: =?ISO-8859-15?Q?Andr=E9_Hentschel?= User-Agent: Mozilla/5.0 (X11; Linux i686; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: buildroot@busybox.net Subject: [Buildroot] [PATCH 1/4] wine: Add opengl 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" 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 a699fff..bd242cf 100644 --- a/package/wine/wine.mk +++ b/package/wine/wine.mk @@ -26,7 +26,6 @@ WINE_CONF_OPTS = \ --without-netapi \ --without-openal \ --without-opencl \ - --without-opengl \ --without-osmesa \ --without-oss \ --without-xshape \ @@ -110,6 +109,13 @@ else WINE_CONF_OPTS += --without-cms endif +ifeq ($(BR2_PACKAGE_HAS_LIBGL),y) +WINE_CONF_OPTS += --with-opengl +WINE_DEPENDENCIES += libgl +else +WINE_CONF_OPTS += --without-opengl +endif + ifeq ($(BR2_PACKAGE_LIBGLU),y) WINE_CONF_OPTS += --with-glu WINE_DEPENDENCIES += libglu