From patchwork Sat Feb 20 22:23:08 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 585712 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 B0CE0140B0F for ; Sun, 21 Feb 2016 09:24:07 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 0FD69A5981; Sat, 20 Feb 2016 22:24:07 +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 2lwJRJ0Aok_A; Sat, 20 Feb 2016 22:24:05 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 4149AA599D; Sat, 20 Feb 2016 22:23:50 +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 945791C108E for ; Sat, 20 Feb 2016 22:23:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 9094C2FE4F for ; Sat, 20 Feb 2016 22:23:39 +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 LW9sEdUSTJYn for ; Sat, 20 Feb 2016 22:23:39 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by silver.osuosl.org (Postfix) with ESMTPS id 048A62618C for ; Sat, 20 Feb 2016 22:23:39 +0000 (UTC) Received: from fwd25.aul.t-online.de (fwd25.aul.t-online.de [172.20.26.130]) by mailout03.t-online.de (Postfix) with SMTP id 63B2938DAB for ; Sat, 20 Feb 2016 23:23:37 +0100 (CET) Received: from fli4l.lan.fli4l (EfrjKmZSwhoEEW5yoKlZApsGj1BJO9m1PWNQpzdKKXvZq2bg8de7+bwsTYnZm7Dwp6@[84.191.222.26]) by fwd25.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1aXFw9-0jfleC0; Sat, 20 Feb 2016 23:23:37 +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 1aXFw8-00028i-58; Sat, 20 Feb 2016 23:23:36 +0100 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sat, 20 Feb 2016 23:23:08 +0100 Message-Id: <1456007008-5200-9-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: EfrjKmZSwhoEEW5yoKlZApsGj1BJO9m1PWNQpzdKKXvZq2bg8de7+bwsTYnZm7Dwp6 X-TOI-MSGID: b527af5f-efc3-40d6-85f9-b413ca224940 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v8 08/28] package/freeswitch: add optional dependency to freetype 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 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/freeswitch/freeswitch.mk b/package/freeswitch/freeswitch.mk index 9e12f33..6bc9b3a 100644 --- a/package/freeswitch/freeswitch.mk +++ b/package/freeswitch/freeswitch.mk @@ -160,6 +160,10 @@ endef FREESWITCH_PRE_CONFIGURE_HOOKS += FREESWITCH_ENABLE_MODULES +ifeq ($(BR2_PACKAGE_FREETYPE),y) +FREESWITCH_DEPENDENCIES += freetype +endif + ifeq ($(BR2_PACKAGE_LIBEDIT),y) FREESWITCH_DEPENDENCIES += libedit FREESWITCH_CONF_OPTS += --enable-core-libedit-support