mirror of
https://github.com/libvirt/libvirt.git
synced 2026-08-13 06:34:42 -05:00
meson: Detect newer fuse
Now that we have support for fuse-3 we can detect it during the configure phase. Even better, we can detect fuse-3 first and fallback to old fuse only if the newer version doesn't exist. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
+9
-3
@@ -947,10 +947,16 @@ if dlopen_dep.found()
|
||||
conf.set('WITH_DLFCN_H', 1)
|
||||
endif
|
||||
|
||||
fuse_version = '2.8.6'
|
||||
fuse_dep = dependency('fuse', version: '>=' + fuse_version, required: get_option('fuse'))
|
||||
fuse_version = '3.1.0'
|
||||
fuse_dep = dependency('fuse3', version: '>=' + fuse_version, required: false)
|
||||
if fuse_dep.found()
|
||||
conf.set('WITH_FUSE', 1)
|
||||
conf.set('WITH_FUSE', 3)
|
||||
else
|
||||
fuse_version = '2.8.6'
|
||||
fuse_dep = dependency('fuse', version: '>=' + fuse_version, required: get_option('fuse'))
|
||||
if fuse_dep.found()
|
||||
conf.set('WITH_FUSE', 1)
|
||||
endif
|
||||
endif
|
||||
|
||||
glib_version = '2.56.0'
|
||||
|
||||
Reference in New Issue
Block a user