summaryrefslogtreecommitdiffstats
path: root/package/ntfs-3g
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2012-12-28 09:47:20 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2012-12-28 21:55:49 +0100
commit2007e3b1ef5e6e2e646750496c7496ce831aae01 (patch)
treeb055bddbb4d22b27028cca147a27928f6fcfcaf9 /package/ntfs-3g
parenta8293a376574c439041de48e6571a4b82f7d2c3b (diff)
downloadbuildroot-novena-2007e3b1ef5e6e2e646750496c7496ce831aae01.tar.gz
buildroot-novena-2007e3b1ef5e6e2e646750496c7496ce831aae01.zip
ntfs-3g: needs libgcrypt
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 <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/ntfs-3g')
-rw-r--r--package/ntfs-3g/Config.in1
-rw-r--r--package/ntfs-3g/ntfs-3g.mk2
2 files changed, 2 insertions, 1 deletions
diff --git a/package/ntfs-3g/Config.in b/package/ntfs-3g/Config.in
index 530103889..1d3e2fb9b 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 d2e68611d..cefb73a40 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)