From 2548c4b83a0871fb92b8ca55cf580a7c58c2f9c6 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Tue, 26 Jun 2018 21:40:21 +0200 Subject: examples: add copy_file_range() support to passthrough(_fh) The passthrough example filesystem can be used for validating the API and the implementation in the FUSE kernel module. --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 661811a..58c4c25 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('libfuse3', 'c', version: '3.3.0', +project('libfuse3', 'c', version: '3.4.0', meson_version: '>= 0.42', default_options: [ 'buildtype=debugoptimized' ]) @@ -36,7 +36,7 @@ cfg.set_quoted('PACKAGE_VERSION', meson.project_version()) # Test for presence of some functions test_funcs = [ 'fork', 'fstatat', 'openat', 'readlinkat', 'pipe2', 'splice', 'vmsplice', 'posix_fallocate', 'fdatasync', - 'utimensat' ] + 'utimensat', 'copy_file_range' ] foreach func : test_funcs cfg.set('HAVE_' + func.to_upper(), cc.has_function(func, prefix: include_default, args: args_default)) -- cgit v1.2.3