From patchwork Sat Mar 7 16:23:37 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: 447617 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 9A15D1401B1 for ; Sun, 8 Mar 2015 03:23:53 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="verification failed; unprotected key" header.d=dawncrow.de header.i=@dawncrow.de header.b=IhrUOlYM; dkim-adsp=none (unprotected policy); dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id CEC5F8ACA2; Sat, 7 Mar 2015 16:23:52 +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 JsX5DLKe4HJN; Sat, 7 Mar 2015 16:23:52 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id E7CE08ACEC; Sat, 7 Mar 2015 16:23:51 +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 746601C25D9 for ; Sat, 7 Mar 2015 16:23:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 6F0788AC8A for ; Sat, 7 Mar 2015 16:23:50 +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 bvya7v8h89ML for ; Sat, 7 Mar 2015 16:23:49 +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 775B28ABA3 for ; Sat, 7 Mar 2015 16:23:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1425745427; l=931; s=domk; d=dawncrow.de; h=Content-Transfer-Encoding:Content-Type:Subject:To:MIME-Version:From: Date; bh=eEcygABR68lCN7kKmCs1xZrJNoMWhgMat14xXxxulyA=; b=IhrUOlYMolmIf2xWnPvP0AQjKcloA+ynt0BH/zGfQKCabX9ca93JIknWnQiLN5mlPUc 5K9qh7nfQ+dytoHrPvnxs0lVYnIEOwShq/uMZc0u0aXMcP2S0wEv8dotN4oYYPS7VcRsk 2PQBAbez93lZm6bNgM3Sdx72srvzTwZkzNI= 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.3 AUTH) with ESMTPSA id c073c8r27GNlfCP (using TLSv1.2 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) for ; Sat, 7 Mar 2015 17:23:47 +0100 (CET) Message-ID: <54FB2609.6020305@dawncrow.de> Date: Sat, 07 Mar 2015 17:23:37 +0100 From: =?UTF-8?B?QW5kcsOpIEhlbnRzY2hlbA==?= 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 v2 2/2] wine: Add gettext dependency check for host-wine 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 --- v2: minor fixes package/wine/wine.mk | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/package/wine/wine.mk b/package/wine/wine.mk index e931c87..9c6e2aa 100644 --- a/package/wine/wine.mk +++ b/package/wine/wine.mk @@ -237,6 +237,13 @@ else WINE_CONF_OPTS += --without-zlib endif +ifeq ($(BR2_PACKAGE_GETTEXT),y) +HOST_WINE_CONF_OPTS += --with-gettext --with-gettextpo +WINE_DEPENDENCIES += gettext +else +HOST_WINE_CONF_OPTS += --without-gettext --without-gettextpo +endif + # Wine needs to enable 64-bit build tools on 64-bit host ifeq ($(HOSTARCH),x86_64) HOST_WINE_CONF_OPTS += --enable-win64 @@ -274,8 +281,6 @@ HOST_WINE_CONF_OPTS += \ --without-curses \ --without-dbus \ --without-fontconfig \ - --without-gettext \ - --without-gettextpo \ --without-gphoto \ --without-glu \ --without-gnutls \