From patchwork Thu May 21 07:40:56 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 474849 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 29C5F14027F for ; Thu, 21 May 2015 17:41:10 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 77AA98794E; Thu, 21 May 2015 07:41:09 +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 5+tUvoNKRT0v; Thu, 21 May 2015 07:41:07 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 0B6EC87884; Thu, 21 May 2015 07:41:07 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id CDAAF1C222C for ; Thu, 21 May 2015 07:41:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id C92AFA3715 for ; Thu, 21 May 2015 07:41:05 +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 adSSmGjs-BEu for ; Thu, 21 May 2015 07:41:04 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout08.t-online.de (mailout08.t-online.de [194.25.134.20]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 30838A3698 for ; Thu, 21 May 2015 07:41:04 +0000 (UTC) Received: from fwd11.aul.t-online.de (fwd11.aul.t-online.de [172.20.27.152]) by mailout08.t-online.de (Postfix) with SMTP id 17B14DE550 for ; Thu, 21 May 2015 09:41:02 +0200 (CEST) Received: from fli4l.lan.fli4l (S+T9--ZZZhs34EHYI+hb1uOOZiCekcufew-GQnvXCS5ldPrtkMrCo91XwDjLtVPZLq@[79.247.168.230]) by fwd11.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1YvL6B-1xOogy0; Thu, 21 May 2015 09:40:59 +0200 Received: from fli4lbuild64.lan.fli4l ([192.168.1.51]:41758) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.85) (envelope-from ) id 1YvL6B-0006WA-4N; Thu, 21 May 2015 09:40:59 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Thu, 21 May 2015 09:40:56 +0200 Message-Id: <1432194056-10250-3-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1432194056-10250-1-git-send-email-bernd.kuhls@t-online.de> References: <1432194056-10250-1-git-send-email-bernd.kuhls@t-online.de> X-ID: S+T9--ZZZhs34EHYI+hb1uOOZiCekcufew-GQnvXCS5ldPrtkMrCo91XwDjLtVPZLq X-TOI-MSGID: 95730f9a-f196-415f-be7f-56fbfde25214 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH/next 3/3] package/dovecot: Add optional support for icu 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" Optional dependency added to fts plugin since Dovecot 2.2.17: http://hg.dovecot.org/dovecot-2.2/diff/b179bbd226e5/configure.ac Signed-off-by: Bernd Kuhls --- package/dovecot/dovecot.mk | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/package/dovecot/dovecot.mk b/package/dovecot/dovecot.mk index 3b4f6d1..58666d0 100644 --- a/package/dovecot/dovecot.mk +++ b/package/dovecot/dovecot.mk @@ -40,6 +40,13 @@ else DOVECOT_CONF_OPTS += --without-bzlib endif +ifeq ($(BR2_PACKAGE_ICU),y) +DOVECOT_CONF_OPTS += --with-icu +DOVECOT_DEPENDENCIES += icu +else +DOVECOT_CONF_OPTS += --without-icu +endif + ifeq ($(BR2_PACKAGE_LIBCAP),y) DOVECOT_CONF_OPTS += --with-libcap DOVECOT_DEPENDENCIES += libcap