diff options
author | Bernd Schubert <bernd.schubert@fastmail.fm> | 2024-12-30 23:34:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-30 23:34:43 +0100 |
commit | 3d743029dc9bfeddcc4b2e8f7bffd98cd89c1026 (patch) | |
tree | 0bc5f6adb495da2ef7c8483454d193cca62a99c8 /lib/meson.build | |
parent | 682e87dbc0a18a703fd4a746b5ef7ee22fb559cf (diff) | |
parent | 3f9d369d083cfeb0a01b9781772efcf9920bdfcb (diff) | |
download | libfuse-3d743029dc9bfeddcc4b2e8f7bffd98cd89c1026.tar.gz |
Merge pull request #1081 from bsbernd/so-version-abi-compat
Increase the .so version, but also change back to previous ABI
Diffstat (limited to 'lib/meson.build')
-rw-r--r-- | lib/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/meson.build b/lib/meson.build index 34dd607..e201a5a 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -34,7 +34,7 @@ endif fusermount_path = join_paths(get_option('prefix'), get_option('bindir')) libfuse = library('fuse3', libfuse_sources, version: meson.project_version(), - soversion: '3', include_directories: include_dirs, + soversion: '4', include_directories: include_dirs, dependencies: deps, install: true, link_depends: 'fuse_versionscript', c_args: [ '-DFUSE_USE_VERSION=317', |