Had problem installing GCSF (from crate) on macOS with already installed fuse, as pkg-config was looking for osxfuse which is the old name. osxfuse has been renamed to macFUSE, and is installed as fuse (at least on my system, installed using brew in spring 2022).
Solved temporarely by creating a symlink for the fuse.pc file to a osxfuse.pc file, so that the installer could find the required files. This fixed the install error.
Might be worth updating, so that both osxfuse or fuse work for pkg-config. Until then, the method above worked for me
Had problem installing GCSF (from crate) on macOS with already installed fuse, as
pkg-configwas looking for osxfuse which is the old name. osxfuse has been renamed to macFUSE, and is installed asfuse(at least on my system, installed using brew in spring 2022).Solved temporarely by creating a symlink for the
fuse.pcfile to aosxfuse.pcfile, so that the installer could find the required files. This fixed the install error.Might be worth updating, so that both
osxfuseorfusework forpkg-config. Until then, the method above worked for me