diff options
author | Nikolaus Rath <Nikolaus@rath.org> | 2017-06-21 15:05:20 -0700 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2017-07-08 12:25:13 +0200 |
commit | 34146444ce20c477cba7e9fe113e4387da32ae94 (patch) | |
tree | 276017769495de5bf3f84d4565ceb9a23e7a1c5f /meson.build | |
parent | 6cc86fc0bdaaeacfb1bd5e4336f2a2d1e5b189b8 (diff) | |
download | sshfs-34146444ce20c477cba7e9fe113e4387da32ae94.tar sshfs-34146444ce20c477cba7e9fe113e4387da32ae94.tar.gz sshfs-34146444ce20c477cba7e9fe113e4387da32ae94.tar.bz2 sshfs-34146444ce20c477cba7e9fe113e4387da32ae94.zip |
Switch to libfuse 3.0.
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 d522b2f..075446a 100644 --- a/meson.build +++ b/meson.build @@ -45,14 +45,14 @@ configure_file(input: 'sshfs.1.in', configure_file(output: 'config.h', configuration : cfg) -sshfs_deps = [ dependency('fuse', version: '>= 2.9'), +sshfs_deps = [ dependency('fuse3', version: '>= 3.0.0'), dependency('glib-2.0'), dependency('gthread-2.0') ] executable('sshfs', sshfs_sources, include_directories: include_dirs, dependencies: sshfs_deps, - c_args: ['-DFUSE_USE_VERSION=26'], + c_args: ['-DFUSE_USE_VERSION=30'], install: true, install_dir: get_option('bindir')) |