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) ],
-project('libfuse3', ['c'], version: '3.17.0',
- meson_version: '>= 0.51',
+project('libfuse3', ['c'],
+ version: '3.17.1-rc0', # Version with RC suffix
+ meson_version: '>= 0.51.0',
default_options: [
'buildtype=debugoptimized',
'c_std=gnu11',
# from integers, i.e. concatenating strings instead
# of splitting a string, but 'project' needs to be
# the first meson.build keyword...
-version_list = meson.project_version().split('.')
+
+# split version into base and rc
+version_parts = meson.project_version().split('-')
+base_version = version_parts[0]
+
+version_list = base_version.split('.')
FUSE_MAJOR_VERSION = version_list[0]
FUSE_MINOR_VERSION = version_list[1]
FUSE_HOTFIX_VERSION = version_list[2]
+FUSE_RC_VERSION = version_parts.length() > 1 ? version_parts[1] : ''
platform = host_machine.system()
if platform == 'darwin'
cc = meson.get_compiler('c')
-#
-# Feature detection, only available at libfuse compilation time,
-# but not for application linking to libfuse.
-#
-private_cfg = configuration_data()
-
#
# Feature detection, the resulting config file is installed
# with the package.
public_cfg.set('FUSE_MAJOR_VERSION', FUSE_MAJOR_VERSION)
public_cfg.set('FUSE_MINOR_VERSION', FUSE_MINOR_VERSION)
public_cfg.set('FUSE_HOTFIX_VERSION', FUSE_HOTFIX_VERSION)
+public_cfg.set('FUSE_RC_VERSION', FUSE_RC_VERSION)
# Default includes when checking for presence of functions and
# struct members
'''
args_default = [ '-D_GNU_SOURCE' ]
+#
+# Feature detection, only available at libfuse compilation time,
+# but not for application linking to libfuse.
+#
+private_cfg = configuration_data()
private_cfg.set_quoted('PACKAGE_VERSION', meson.project_version())
# Test for presence of some functions