Prefer libfuse3 for pfsfuse with libfuse fallback compatibility#58
Draft
Copilot wants to merge 3 commits into
Draft
Prefer libfuse3 for pfsfuse with libfuse fallback compatibility#58Copilot wants to merge 3 commits into
Copilot wants to merge 3 commits into
Conversation
1 task
Copilot
AI
changed the title
[WIP] Replace fuse with fuse3 in pfsshell
Prefer libfuse3 for pfsfuse with libfuse fallback compatibility
Jun 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
pfsfusecurrently depends onfusein Meson, which breaks builds in environments standardizing onfuse3(e.g., nixpkgs). This change updates dependency resolution and adapter compatibility sopfsfusebuilds againstfuse3while retaining support for legacyfuse.Build dependency resolution
dependency('fuse3')on non-Windows builds.dependency('fuse')whenfuse3is unavailable.FUSE2/FUSE3 adapter compatibility
fuse3:FUSE_USE_VERSION 30,<fuse3/fuse.h>init,readdir,getattr,rename,chmod,utimens)..truncatefor FUSE3,.ftruncatefor FUSE2).CI and docs alignment
fuse3/libfuse3-dev.fuse3withfusefallback on older systems.