From patchwork Fri Dec 28 19:47:20 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 208555 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 8F2EF2C00E7 for ; Sat, 29 Dec 2012 06:48:06 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 046AEA0135; Fri, 28 Dec 2012 19:48:06 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id h2mP0Nq+qvyr; Fri, 28 Dec 2012 19:48:01 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 95D4AA010D; Fri, 28 Dec 2012 19:47:54 +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 2F3288F74B for ; Fri, 28 Dec 2012 19:47:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 472C082004 for ; Fri, 28 Dec 2012 19:47:50 +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 HrmhQ0FivwbM for ; Fri, 28 Dec 2012 19:47:49 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 3FB34822C4 for ; Fri, 28 Dec 2012 19:47:49 +0000 (UTC) Received: from asgard (host204.190-231-107.telecom.net.ar [190.231.107.204]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id qBSJlgjA010688 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 28 Dec 2012 19:47:45 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1356724067; bh=krTnSmeQ8VwYnClWVeey9G2VtUJaEaH7+LLsy8J3xtk=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=tZMJC4iPBHFBYNKM3NRETG+SzjE7r0f1CDFsktj+n4cvYBnAgHV5kaJ07+/iKJI5u n+X7/TgFHQnqHGaJ1sI7x1qAZhTbJd1zCP/YuGWXpaVewPI5ZrWJoLQOaFGhU4gWhb hFYd5EUjvgMWz4eoygnlDtD6eBnYEtL6wFs39d4I= Received: by asgard (sSMTP sendmail emulation); Fri, 28 Dec 2012 16:47:42 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Fri, 28 Dec 2012 16:47:20 -0300 Message-Id: <1356724043-8879-4-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 In-Reply-To: <1356724043-8879-1-git-send-email-gustavo@zacarias.com.ar> References: <1356724043-8879-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.97.5 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH 4/7] ntfs-3g: needs libgcrypt X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 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-bounces@busybox.net Now that we've moved to gnutls 3.x which no longer uses libgcrypt we need to pull it in as a dependency for ntfs-3g encrypted volume support to avoid build breakage. Signed-off-by: Gustavo Zacarias --- package/ntfs-3g/Config.in | 1 + package/ntfs-3g/ntfs-3g.mk | 2 +- 2 files changed, 2 insertions(+), 1 deletions(-) diff --git a/package/ntfs-3g/Config.in b/package/ntfs-3g/Config.in index 5301038..1d3e2fb 100644 --- a/package/ntfs-3g/Config.in +++ b/package/ntfs-3g/Config.in @@ -17,6 +17,7 @@ if BR2_PACKAGE_NTFS_3G config BR2_PACKAGE_NTFS_3G_ENCRYPTED bool "encrypted volumes" select BR2_PACKAGE_GNUTLS + select BR2_PACKAGE_LIBGCRYPT help Enable support for NTFS encrypted volumes. diff --git a/package/ntfs-3g/ntfs-3g.mk b/package/ntfs-3g/ntfs-3g.mk index d2e6861..cefb73a 100644 --- a/package/ntfs-3g/ntfs-3g.mk +++ b/package/ntfs-3g/ntfs-3g.mk @@ -23,7 +23,7 @@ endif ifeq ($(BR2_PACKAGE_NTFS_3G_ENCRYPTED),y) NTFS_3G_CONF_ENV += LIBGCRYPT_CONFIG=$(STAGING_DIR)/usr/bin/libgcrypt-config NTFS_3G_CONF_OPT += --enable-crypto - NTFS_3G_DEPENDENCIES += gnutls + NTFS_3G_DEPENDENCIES += gnutls libgcrypt endif ifneq ($(BR2_PACKAGE_NTFS_3G_NTFSPROGS),y)