diff options
author | Bill Zissimopoulos <billziss@navimatics.com> | 2019-12-31 01:58:57 -0800 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2019-12-31 09:58:57 +0000 |
commit | abdd45f83cea86410536d9a45aa317cc0511d9d2 (patch) | |
tree | b8a43cbf6954caca556b9219f8bafa107b4ac66b /util | |
parent | b5060b0642f6f97a934c4fc6a8d4dcd84d454fe7 (diff) | |
download | libfuse-abdd45f83cea86410536d9a45aa317cc0511d9d2.tar.gz |
Make ioctl prototype conditional on FUSE_USE_VERSION. (#482)
Define FUSE_USE_VERSION < 35 to get old ioctl prototype
with int commands; define FUSE_USE_VERSION >= 35 to get
new ioctl prototype with unsigned int commands.
Fixes #463.
Diffstat (limited to 'util')
-rw-r--r-- | util/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/meson.build b/util/meson.build index 5c8f1b5..577668f 100644 --- a/util/meson.build +++ b/util/meson.build @@ -11,7 +11,7 @@ executable('mount.fuse3', ['mount.fuse.c'], link_with: [ libfuse ], install: true, install_dir: get_option('sbindir'), - c_args: '-DFUSE_USE_VERSION=34') + c_args: '-DFUSE_USE_VERSION=35') udevrulesdir = get_option('udevrulesdir') |