From beaaf78b72640f8231f49fdfc1b6dcfc3d14f149 Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Thu, 11 Feb 2021 22:43:53 +0100 Subject: dav, http: port to libsoup3 The dav and http backends of the daemon now use libsoup3. Things should work more or less the same as before. One caveat is that the soup session no longer defaults to ssl-strict, so it will no longer silently accept certificates. This does not affect the DAV backend (it has its own handling which is replicated in the soup3 port) but it does affect the http backend. Fixes: https://gitlab.gnome.org/GNOME/gvfs/-/issues/208 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 557eef83..9b771ffa 100644 --- a/meson.build +++ b/meson.build @@ -310,7 +310,7 @@ endif enable_http = get_option('http') if enable_http assert(have_libxml, 'http required but libxml-2.0 not found') - libsoup_dep = dependency('libsoup-2.4', version: '>= 2.58.0') + libsoup_dep = dependency('libsoup-3.0', version: '>= 3.0.0') endif # *** Check if we should build with DNS-SD backend *** -- cgit v1.2.1