diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-10-13 17:06:06 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-10-14 09:59:12 +0200 |
commit | a78848202b6bb5af178509e0514d5a42b9c4430c (patch) | |
tree | f121d4d7b9e9f0d3acd5dae04539920eb8a264d4 | |
parent | c37d5c171c39f0bf859ba397c34f2122d655bf8b (diff) | |
download | buildroot-a78848202b6bb5af178509e0514d5a42b9c4430c.tar.gz buildroot-a78848202b6bb5af178509e0514d5a42b9c4430c.zip |
gvfs: fix activation of http/dav backend
Since gvfs version 1.2.3, http/dav backend needs libxml2:
https://gitlab.gnome.org/GNOME/gvfs/commit/2ef5b4192f95f9205204215aec33787641608e58
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/gvfs/gvfs.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/gvfs/gvfs.mk b/package/gvfs/gvfs.mk index 7110e39083..e272d5c1dc 100644 --- a/package/gvfs/gvfs.mk +++ b/package/gvfs/gvfs.mk @@ -95,8 +95,8 @@ else GVFS_CONF_OPTS += --disable-nfs endif -ifeq ($(BR2_PACKAGE_LIBSOUP),y) -GVFS_DEPENDENCIES += libsoup +ifeq ($(BR2_PACKAGE_LIBSOUP)$(BR2_PACKAGE_LIBXML2),yy) +GVFS_DEPENDENCIES += libsoup libxml2 GVFS_CONF_OPTS += --enable-http else GVFS_CONF_OPTS += --disable-http |