mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 13:26:00 +03:00
[GH-ISSUE #81] Installing on Ubuntu 14.10 #48
Labels
No labels
bug
bug
dataloss
duplicate
enhancement
feature request
help wanted
invalid
need info
performance
pull-request
question
question
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/s3fs-fuse#48
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @edsadr on GitHub (Nov 11, 2014).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/81
Hello
After run:
./configure --prefix=/usr --with-openssl
you get:
./configure: line 4271: syntax error near unexpected token
common_lib_checking,' ./configure: line 4271:PKG_CHECK_MODULES(common_lib_checking, fuse >= 2.8.4 libcurl >= 7.0 libxml-2.0 >= 2.6)'All dependencies were installed according to the documentation
Regrads
Adrian
@ggtakec commented on GitHub (Nov 17, 2014):
Hi,
I tried to build s3fs on 14.10, then we need following packages when you do not have those.
Please check it after installing those.
Regards,
@edsadr commented on GitHub (Nov 17, 2014):
Thanks @ggtakec that solved it for me
@ggtakec commented on GitHub (Nov 17, 2014):
I'm glad for your help.:-)
@lucheng1 commented on GitHub (Dec 15, 2014):
I ran into almost the exact issue at a slightly different line number: 4270
./configure: line 4270: syntax error near unexpected token
common_lib_checking,' ./configure: line 4270:PKG_CHECK_MODULES(common_lib_checking, fuse >= 2.8.4 libcurl >= 7.0 libxml-2.0 >= 2.6)'All the dependencies listed seem to check out including the following:
pkg-config
libssl-dev
I checked the config.log and the only error I saw was error on gcc -V and -qversion option and I took those out and that made no difference.
@muktaa commented on GitHub (Dec 23, 2014):
Me too - I am facing the same issue as above.
./configure: line 4270: syntax error near unexpected token common_lib_checking,' ./configure: line 4270:PKG_CHECK_MODULES(common_lib_checking, fuse >= 2.8.4 libcurl >= 7.0 libxml-2.0 >= 2.6)'
@muktaa commented on GitHub (Dec 26, 2014):
Check out this Docker image for ubuntu. Let me know if it helps: https://registry.hub.docker.com/u/ihealthtechnologies/s3-mount/
@movermeyer commented on GitHub (May 30, 2015):
@muktaa The Docker image link no longer works. Is it backed by a github repo by chance?
@movermeyer commented on GitHub (May 30, 2015):
I had the same issue.
In my case, I was missing the pkg-config package.
Fixed it for me.
@muktaa commented on GitHub (May 31, 2015):
@movermeyer - thanks for pointing out, please check if the docker image link is accessible now.
https://registry.hub.docker.com/u/ihealthtechnologies/s3-mount/
@movermeyer commented on GitHub (May 31, 2015):
@muktaa Looks good now. Cheers.
@jmullee commented on GitHub (Jun 3, 2015):
for me, what worked:
apt-get install build-essential libcurl4-openssl-dev libxml2-dev pkg-config libssl-dev libfuse-dev
./autogen.sh # (re-run after installing packages)
./configure --with-openssl
make