From patchwork Sat Mar 21 15:38:39 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: 452958 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 D3298140134 for ; Sun, 22 Mar 2015 02:38:53 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="verification failed; unprotected key" header.d=dawncrow.de header.i=@dawncrow.de header.b=LJrPwpQP; dkim-adsp=none (unprotected policy); dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id EE69E952F9; Sat, 21 Mar 2015 15:38:51 +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 MgsdY-czxpO0; Sat, 21 Mar 2015 15:38:49 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id C04289531C; Sat, 21 Mar 2015 15:38:49 +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 473DA1C293D for ; Sat, 21 Mar 2015 15:38:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 43FE591BB3 for ; Sat, 21 Mar 2015 15:38:48 +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 jPKsWehMXgn8 for ; Sat, 21 Mar 2015 15:38:47 +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.160]) by whitealder.osuosl.org (Postfix) with ESMTPS id B2C3891AD4 for ; Sat, 21 Mar 2015 15:38:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1426952324; l=811; s=domk; d=dawncrow.de; h=Content-Transfer-Encoding:Content-Type:Subject:To:MIME-Version:From: Date; bh=nferCSyKTJ3YNmFj8ftHN43SMDHNWhlXTy7P0jH/MLw=; b=LJrPwpQPM246/+aBqfzI0OV6+gps9Jk0BxULK3dEUnqkD2LGrsEisDO71gqMezZQxLA 4laNRZc/sAGBDh0BIfGzRvI7gd+noqRO79IWsKVWsXXBN51bPJ8KkKVrhRwnxXYkCdZgG 04jmEXDkW5sJNdBlu1pRWneh+DC05IWJYJ8= 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 L02c03r2LFcikBa (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:44 +0100 (CET) Message-ID: <550D907F.5000106@dawncrow.de> Date: Sat, 21 Mar 2015 16:38:39 +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 4/4] wine: more hostarch 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" The tools from host-wine build on those architectures. Signed-off-by: André Hentschel --- package/wine/Config.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package/wine/Config.in b/package/wine/Config.in index 26de143..d1510e1 100644 --- a/package/wine/Config.in +++ b/package/wine/Config.in @@ -2,7 +2,9 @@ config BR2_PACKAGE_WINE bool "wine" depends on BR2_TOOLCHAIN_USES_GLIBC # Wine only builds on certain architectures - depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" + depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" || \ + BR2_HOSTARCH = "powerpc" || BR2_HOSTARCH = "arm" || \ + BR2_HOSTARCH = "aarch64" # Wine has much CPU specific code and mostly makes sense on x86 depends on BR2_i386 help