diff options
author | Niels de Vos <ndevos@redhat.com> | 2018-06-26 21:40:21 +0200 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2018-11-19 12:33:56 +0000 |
commit | 2548c4b83a0871fb92b8ca55cf580a7c58c2f9c6 (patch) | |
tree | 609571da349b5a06c7fd555d7c8044744883a345 /meson.build | |
parent | fe4f9428fc403fa8b99051f52d84ea5bd13f3855 (diff) | |
download | libfuse-2548c4b83a0871fb92b8ca55cf580a7c58c2f9c6.tar.gz |
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.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
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)) |