sshfs
sshfs copied to clipboard
./configure not in repository
The install instructions begin with "Run ./configure", but ./configure doesn't exist.
Never mind; Answered my own question.
Still have a problem though: Running the generated ./configure, it ends with:
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for library containing dlsym... none required
checking OpenSSH version... 6.9 >= 4.4, disabling NODELAY workaround
./configure: line 3796: syntax error near unexpected token SSHFS,' ./configure: line 3796:
PKG_CHECK_MODULES(SSHFS, fuse >= 2.3 glib-2.0 gthread-2.0)'
R5057499:sshfs rpn01$
Is there a work-around for this?
You need to make sure that all required dependencies are installed. Among those dependencies are glib and gthread. The error could also mean that pkg-config is not installed.
The easiest way to build sshfs is probably MacPorts (or Homebrew). If you are looking for a prebuilt binary you can download an installer package from https://osxfuse.github.io.
@bfleischer Can you merge from upstream and upload an up-to-date installer package? The current stable version is 2.8.0.
run into the same pitfall on macOS 10.12
nothing changed after brew install pkg-config
When I try to run ./configure
I just get "No such file or directory"
macOS Mojave
I wish @rpural had shared with us his answer to this question.
@RobLewis 3 years later, the answer is that you need to run autoreconf -i
first, which will make the config file.