aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorNiels de Vos <ndevos@redhat.com>2018-06-26 21:40:21 +0200
committerNikolaus Rath <Nikolaus@rath.org>2018-11-19 12:33:56 +0000
commit2548c4b83a0871fb92b8ca55cf580a7c58c2f9c6 (patch)
tree609571da349b5a06c7fd555d7c8044744883a345 /lib
parentfe4f9428fc403fa8b99051f52d84ea5bd13f3855 (diff)
downloadlibfuse-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 'lib')
-rw-r--r--lib/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/meson.build b/lib/meson.build
index 996bcfd..90ce5a4 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -32,7 +32,7 @@ libfuse = library('fuse3', libfuse_sources, version: meson.project_version(),
soversion: '3', include_directories: include_dirs,
dependencies: deps, install: true,
link_depends: 'fuse_versionscript',
- c_args: [ '-DFUSE_USE_VERSION=33',
+ c_args: [ '-DFUSE_USE_VERSION=34',
'-DFUSERMOUNT_DIR="@0@"'.format(fusermount_path) ],
link_args: ['-Wl,--version-script,' + meson.current_source_dir()
+ '/fuse_versionscript' ])