From patchwork Sun Mar 15 11:35:34 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: 450292 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 87F12140079 for ; Sun, 15 Mar 2015 22:35:46 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="verification failed; unprotected key" header.d=dawncrow.de header.i=@dawncrow.de header.b=YnrFthSb; dkim-adsp=none (unprotected policy); dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 12725A296D; Sun, 15 Mar 2015 11:35:46 +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 ZxEa_jGdQkw5; Sun, 15 Mar 2015 11:35:44 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 0DA5FA295C; Sun, 15 Mar 2015 11:35:44 +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 3C7FD1C2936 for ; Sun, 15 Mar 2015 11:35:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 377519186D for ; Sun, 15 Mar 2015 11:35:43 +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 loYj3w4chikg for ; Sun, 15 Mar 2015 11:35:41 +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.217]) by whitealder.osuosl.org (Postfix) with ESMTPS id 80ED491865 for ; Sun, 15 Mar 2015 11:35:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1426419338; l=976; s=domk; d=dawncrow.de; h=Content-Transfer-Encoding:Content-Type:Subject:CC:To:MIME-Version: From:Date; bh=y7BeSQB5tZHkSEIj6OLLzSWSrht3L7Xgmace1ac7IVU=; b=YnrFthSbpXimPIIX5lKtRDthZcihRLrR8uQNmRgCJQDKHmybw+Mo4B4FFzX7RftJs4F k3mRw3E2jOwJYZacE4dSweZBXn6hy64et6v/QayrisVdHwxPN7GDlX5cczRF2uzx6OEYO t6cV6BUegHHhVaoXLWoR0JU1ziN0RVIm60M= 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 w02069r2FBZZMYK (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate); Sun, 15 Mar 2015 12:35:35 +0100 (CET) Message-ID: <55056E86.5020109@dawncrow.de> Date: Sun, 15 Mar 2015 12:35:34 +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 Cc: "Yann E. MORIN" Subject: [Buildroot] [PATCH v4] wine: Add gettext dependency 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" Mostly based on a comment by Yann E. MORIN Signed-off-by: André Hentschel Cc: Yann E. MORIN Tested-by: "Yann E. MORIN" Reviewed-by: "Yann E. MORIN" --- package/wine/wine.mk | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package/wine/wine.mk b/package/wine/wine.mk index aa474f9..a699fff 100644 --- a/package/wine/wine.mk +++ b/package/wine/wine.mk @@ -243,6 +243,10 @@ else WINE_CONF_OPTS += --without-zlib endif +# host-gettext is essential for .po file support in host-wine wrc +HOST_WINE_DEPENDENCIES += host-gettext +HOST_WINE_CONF_OPTS += --with-gettext --with-gettextpo + # Wine needs to enable 64-bit build tools on 64-bit host ifeq ($(HOSTARCH),x86_64) HOST_WINE_CONF_OPTS += --enable-win64 @@ -280,8 +284,6 @@ HOST_WINE_CONF_OPTS += \ --without-curses \ --without-dbus \ --without-fontconfig \ - --without-gettext \ - --without-gettextpo \ --without-gphoto \ --without-glu \ --without-gnutls \