From patchwork Sun Mar 8 14:22:11 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: 447793 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 BE9101401DC for ; Mon, 9 Mar 2015 01:22:28 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="verification failed; unprotected key" header.d=dawncrow.de header.i=@dawncrow.de header.b=Yx+DBR4f; dkim-adsp=none (unprotected policy); dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id BC2BA915D4; Sun, 8 Mar 2015 14:22:27 +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 R2fdnbEGsEKZ; Sun, 8 Mar 2015 14:22:27 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id DD65E915CE; Sun, 8 Mar 2015 14:22:26 +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 9017E1C2998 for ; Sun, 8 Mar 2015 14:22:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 8A640915CE for ; Sun, 8 Mar 2015 14:22:25 +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 bAw8kwzBGQ4g for ; Sun, 8 Mar 2015 14:22:24 +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 D0259915A7 for ; Sun, 8 Mar 2015 14:22:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1425824540; l=803; s=domk; d=dawncrow.de; h=Content-Transfer-Encoding:Content-Type:Subject:To:MIME-Version:From: Date; bh=ou6ZgYuCrXdwRroI4tXEa9pVZBKvy2rxs1lAR8LofPc=; b=Yx+DBR4frAKwCtTCWZ2JHGqBmDz4k7TpXzHrShmvMj3Nd1zIlWYfX0ZLZYfazNObIsW hmKfLNc2TJRWuIqVVtH+SFV5MYYLHJDtxYsxD12wde54a42AgswgcXV+A3xYYQ0PYRw75 1dsTYptgfjNE3vz5JvqH6U3blKIlfNGyB5c= 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 60553ar28EMKqF5 (using TLSv1.2 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) for ; Sun, 8 Mar 2015 15:22:20 +0100 (CET) Message-ID: <54FC5B13.90707@dawncrow.de> Date: Sun, 08 Mar 2015 15:22:11 +0100 From: =?windows-1252?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/2] wine: Add openldap dependency check 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 e931c87..571606d 100644 --- a/package/wine/wine.mk +++ b/package/wine/wine.mk @@ -23,7 +23,6 @@ WINE_CONF_OPTS = \ --without-gphoto \ --without-gsm \ --without-hal \ - --without-ldap \ --without-netapi \ --without-openal \ --without-opencl \ @@ -160,6 +159,13 @@ else WINE_CONF_OPTS += --without-curses endif +ifeq ($(BR2_PACKAGE_OPENLDAP),y) +WINE_CONF_OPTS += --with-ldap +WINE_DEPENDENCIES += openldap +else +WINE_CONF_OPTS += --without-ldap +endif + ifeq ($(BR2_PACKAGE_SANE_BACKENDS),y) WINE_CONF_OPTS += --with-sane WINE_DEPENDENCIES += sane-backends