Closed
Description
I'm running Fedora 26 with 4.12.14-300 kernel on x86_64 arch. I've just installed fuse3 following instructions at https://github.com/libfuse/libfuse. Tests were all green. The only issue I've encountered was that /etc/init.d/fuse3
didn't support chkconfig, and I sort of fixed that manually by adding:
# chkconfig: - 90 60
at the top of the script, then running all sorts of chkconfig --add fuse3
, chkconfig fuse3 on
, systemctl start fuse3
to get it up.
Now I try to install sshfs, and when I run meson ..
, this is what I get:
The Meson build system
Version: 0.42.1
Source dir: /home/ivan/Install/sshfs-3.3.0
Build dir: /home/ivan/Install/sshfs-3.3.0/build
Build type: native build
Project name: sshfs
Native C compiler: cc (gcc 7.2.1)
Build machine cpu family: x86_64
Build machine cpu: x86_64
Message: Compiler warns about unused result even when casting to void
Program rst2man found: NO
Configuring config.h using configuration
Found pkg-config: /bin/pkg-config (1.3.9)
Meson encountered an error in file meson.build, line 47, column 0:
Native dependency 'fuse3' not found
Yet, fuse3 service seems to be up and running:
[ivan@fedora build]$ sudo systemctl status fuse3
[sudo] password for ivan:
● fuse3.service - LSB: Start and stop fuse.
Loaded: loaded (/etc/rc.d/init.d/fuse3; generated; vendor preset: disabled)
Active: active (exited) since Sat 2017-09-30 17:46:46 MSK; 9min ago
Docs: man:systemd-sysv-generator(8)
Process: 792 ExecStart=/etc/rc.d/init.d/fuse3 start (code=exited, status=0/SUCCESS)
Tasks: 0 (limit: 4915)
CGroup: /system.slice/fuse3.service
Sep 30 17:46:45 fedora.localdomain systemd[1]: Starting LSB: Start and stop fuse....
Sep 30 17:46:46 fedora.localdomain fuse3[792]: Loading fuse module.
Sep 30 17:46:46 fedora.localdomain fuse3[792]: Mounting fuse control filesystem.
Sep 30 17:46:46 fedora.localdomain systemd[1]: Started LSB: Start and stop fuse..
What could I have possibly done wrong? And how do I do it right?