From patchwork Sat Feb 20 22:23:03 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 585721 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id DC518140B0F for ; Sun, 21 Feb 2016 09:24:43 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id A421DA5B40; Sat, 20 Feb 2016 22:24:36 +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 RgOCI_Zii4Bm; Sat, 20 Feb 2016 22:24:34 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id C29BBA5B44; Sat, 20 Feb 2016 22:24:03 +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 2E2B71C108E for ; Sat, 20 Feb 2016 22:23:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 2857E31A24 for ; Sat, 20 Feb 2016 22:23:44 +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 aQbdXCh5UYZA for ; Sat, 20 Feb 2016 22:23:43 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout07.t-online.de (mailout07.t-online.de [194.25.134.83]) by silver.osuosl.org (Postfix) with ESMTPS id 0A4102618C for ; Sat, 20 Feb 2016 22:23:43 +0000 (UTC) Received: from fwd01.aul.t-online.de (fwd01.aul.t-online.de [172.20.27.147]) by mailout07.t-online.de (Postfix) with SMTP id 1AD8521E936 for ; Sat, 20 Feb 2016 23:23:41 +0100 (CET) Received: from fli4l.lan.fli4l (EPGSzBZvohFXTZuTlNbdUpwNjFqrwejJZRW-WwN-Pq2Wg4V8yho62jqOQvmqoTHQpw@[84.191.222.26]) by fwd01.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1aXFw7-083uue0; Sat, 20 Feb 2016 23:23:35 +0100 Received: from mahler.lan.fli4l ([192.168.1.1]:36714 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.86) (envelope-from ) id 1aXFw6-00028i-85; Sat, 20 Feb 2016 23:23:34 +0100 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sat, 20 Feb 2016 23:23:03 +0100 Message-Id: <1456007008-5200-4-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.7.0 In-Reply-To: <1456007008-5200-1-git-send-email-bernd.kuhls@t-online.de> References: <1456007008-5200-1-git-send-email-bernd.kuhls@t-online.de> X-ID: EPGSzBZvohFXTZuTlNbdUpwNjFqrwejJZRW-WwN-Pq2Wg4V8yho62jqOQvmqoTHQpw X-TOI-MSGID: 7cbc6b11-e646-4368-8ee9-3dc63005ccad Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v8 03/28] package/freeswitch: add optional dependency to libuuid 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/Config.in | 4 ++++ package/freeswitch/freeswitch.mk | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/package/freeswitch/Config.in b/package/freeswitch/Config.in index b52d469..a641008 100644 --- a/package/freeswitch/Config.in +++ b/package/freeswitch/Config.in @@ -10,6 +10,10 @@ config BR2_PACKAGE_FREESWITCH select BR2_PACKAGE_PCRE select BR2_PACKAGE_SPEEX select BR2_PACKAGE_SQLITE + # "libuuid development package highly recommended!" + # https://freeswitch.org/stash/projects/FS/repos/freeswitch/browse/build/config/uuid.m4#9 + select BR2_PACKAGE_UTIL_LINUX if BR2_USE_WCHAR + select BR2_PACKAGE_UTIL_LINUX_LIBUUID if BR2_USE_WCHAR select BR2_PACKAGE_ZLIB help FreeSWITCH is a scalable open source cross-platform telephony diff --git a/package/freeswitch/freeswitch.mk b/package/freeswitch/freeswitch.mk index f4846c9..2c98c6c 100644 --- a/package/freeswitch/freeswitch.mk +++ b/package/freeswitch/freeswitch.mk @@ -162,4 +162,8 @@ endef FREESWITCH_PRE_CONFIGURE_HOOKS += FREESWITCH_ENABLE_MODULES +ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y) +FREESWITCH_DEPENDENCIES += util-linux +endif + $(eval $(autotools-package))