package/gvfs: add optional libfuse3 dependency

libfuse3 is an optional dependency since version 1.41.1 and
7a0a06186b

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Fabrice Fontaine 2020-07-14 19:38:10 +02:00 committed by Thomas Petazzoni
parent 71214bdca3
commit 4045dcba80

View file

@ -25,7 +25,6 @@ GVFS_LDFLAGS = $(TARGET_LDFLAGS) $(TARGET_NLS_LIBS)
# Most of these are missing library support
GVFS_CONF_OPTS = \
-Dafc=false \
-Dfuse=false \
-Dgoa=false \
-Dgoogle=false \
-Dmtp=false \
@ -85,6 +84,13 @@ else
GVFS_CONF_OPTS += -Dcdda=false
endif
ifeq ($(BR2_PACKAGE_LIBFUSE3),y)
GVFS_DEPENDENCIES += libfuse3
GVFS_CONF_OPTS += -Dfuse=true
else
GVFS_CONF_OPTS += -Dfuse=false
endif
# AFP support is anon-only without libgcrypt which isn't very useful
ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
GVFS_CONF_OPTS += \