From patchwork Thu Apr 14 19:32:00 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 610622 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 3qm9p139Tlz9sD5 for ; Fri, 15 Apr 2016 05:33:45 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 260E686E31; Thu, 14 Apr 2016 19:33: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 3bjKkIWlG1aq; Thu, 14 Apr 2016 19:33:37 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id B98F8919EA; Thu, 14 Apr 2016 19:32:59 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id C81141C15FF for ; Thu, 14 Apr 2016 19:32:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id C1E3030370 for ; Thu, 14 Apr 2016 19:32:22 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3kNy6CNVmcbz for ; Thu, 14 Apr 2016 19:32:22 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout05.t-online.de (mailout05.t-online.de [194.25.134.82]) by silver.osuosl.org (Postfix) with ESMTPS id C515930478 for ; Thu, 14 Apr 2016 19:32:21 +0000 (UTC) Received: from fwd13.aul.t-online.de (fwd13.aul.t-online.de [172.20.27.62]) by mailout05.t-online.de (Postfix) with SMTP id C540C3031C7 for ; Thu, 14 Apr 2016 21:32:19 +0200 (CEST) Received: from fli4l.lan.fli4l (ZY42QcZE8hSUpXgW0gKv6F4QEFphdRK45mn3ioBPmg-WlIUsTSE9dAhCHtBXbc1Q+e@[84.178.246.80]) by fwd13.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1aqmzv-0QMUhk0; Thu, 14 Apr 2016 21:32:15 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:34254 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.87) (envelope-from ) id 1aqmzu-0006eL-RQ; Thu, 14 Apr 2016 21:32:15 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Thu, 14 Apr 2016 21:32:00 +0200 Message-Id: <1460662320-1437-27-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.8.0.rc3 In-Reply-To: <1460662320-1437-1-git-send-email-bernd.kuhls@t-online.de> References: <1460662320-1437-1-git-send-email-bernd.kuhls@t-online.de> X-ID: ZY42QcZE8hSUpXgW0gKv6F4QEFphdRK45mn3ioBPmg-WlIUsTSE9dAhCHtBXbc1Q+e X-TOI-MSGID: 47d9d304-bc89-48a4-b45f-c4d0ff2e1eb6 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v13 26/26] package/freeswitch: add optional dependency to openldap 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: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Signed-off-by: Bernd Kuhls --- package/freeswitch/freeswitch.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package/freeswitch/freeswitch.mk b/package/freeswitch/freeswitch.mk index aea40b7..f3d12a2 100644 --- a/package/freeswitch/freeswitch.mk +++ b/package/freeswitch/freeswitch.mk @@ -221,6 +221,11 @@ FREESWITCH_DEPENDENCIES += lua FREESWITCH_ENABLED_MODULES += languages/mod_lua endif +ifeq ($(BR2_PACKAGE_OPENLDAP),y) +FREESWITCH_DEPENDENCIES += openldap +FREESWITCH_ENABLED_MODULES += directories/mod_ldap xml_int/mod_xml_ldap +endif + ifeq ($(BR2_PACKAGE_OPUS),y) FREESWITCH_DEPENDENCIES += opus FREESWITCH_ENABLED_MODULES += codecs/mod_opus