diff options
author | Bernd Schubert <bernd@bsbernd.com> | 2025-02-10 02:36:39 +0100 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-02-10 16:56:45 +0100 |
commit | 0c2eaff63214b61b2398f542852b958b79786e9d (patch) | |
tree | 8564aff55155e39afcc506e2a625839005357544 /lib/meson.build | |
parent | dc4c0b2594f1bce28fc84025cb2957213b4ff7f7 (diff) | |
download | libfuse-0c2eaff63214b61b2398f542852b958b79786e9d.tar.gz |
Change version to 3.17.1-rc0
Somehow really hard to set -rcX with meson.
Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
Diffstat (limited to 'lib/meson.build')
-rw-r--r-- | lib/meson.build | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/meson.build b/lib/meson.build index e201a5a..6a52d06 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -33,9 +33,13 @@ else endif fusermount_path = join_paths(get_option('prefix'), get_option('bindir')) -libfuse = library('fuse3', libfuse_sources, version: meson.project_version(), - soversion: '4', include_directories: include_dirs, - dependencies: deps, install: true, +libfuse = library('fuse3', + libfuse_sources, + version: base_version, + soversion: '4', + include_directories: include_dirs, + dependencies: deps, + install: true, link_depends: 'fuse_versionscript', c_args: [ '-DFUSE_USE_VERSION=317', '-DFUSERMOUNT_DIR="@0@"'.format(fusermount_path) ], |