2007e3b1ef
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>
34 lines
900 B
Makefile
34 lines
900 B
Makefile
#############################################################
|
|
#
|
|
# ntfs-3g
|
|
#
|
|
#############################################################
|
|
|
|
NTFS_3G_VERSION = 2012.1.15
|
|
NTFS_3G_SOURCE = ntfs-3g_ntfsprogs-$(NTFS_3G_VERSION).tgz
|
|
NTFS_3G_SITE = http://tuxera.com/opensource
|
|
NTFS_3G_CONF_OPT = --disable-ldconfig
|
|
NTFS_3G_INSTALL_STAGING = YES
|
|
NTFS_3G_DEPENDENCIES = host-pkgconf
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBFUSE),y)
|
|
NTFS_3G_CONF_OPT += --with-fuse=external
|
|
NTFS_3G_DEPENDENCIES += libfuse
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y)
|
|
NTFS_3G_DEPENDENCIES += util-linux
|
|
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 libgcrypt
|
|
endif
|
|
|
|
ifneq ($(BR2_PACKAGE_NTFS_3G_NTFSPROGS),y)
|
|
NTFS_3G_CONF_OPT += --disable-ntfsprogs
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|