aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBernd Schubert <bernd@bsbernd.com>2025-02-10 02:36:39 +0100
committerBernd Schubert <bernd@bsbernd.com>2025-02-10 15:28:17 +0100
commit805969f5284505e48ee87175476cf9df241ded42 (patch)
tree8564aff55155e39afcc506e2a625839005357544 /lib
parentdca6e514c81e3ad0ec806f79b774b3707b313f63 (diff)
downloadlibfuse-805969f5284505e48ee87175476cf9df241ded42.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')
-rw-r--r--lib/meson.build10
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) ],