mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 05:16:00 +03:00
[GH-ISSUE #99] Install / configure fails on ubuntu #62
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#62
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 @lucheng1 on GitHub (Dec 15, 2014).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/99
This is almost the same issue as #81 but 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.
@lucheng1 commented on GitHub (Dec 15, 2014):
found the solution from #2.
autoreconf --install
CPPFLAGS=-I/usr/include/libxml2 ./configure
make install
not sure why this is needed.
@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.
@mpilon commented on GitHub (Sep 12, 2018):
@lucheng1 tried everything -- yours worked.
@mrnafanya commented on GitHub (Oct 3, 2022):
Thanks. That fix the issue for me.