mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 13:26:00 +03:00
[GH-ISSUE #438] syntax error near unexpected token `common_lib_checking,' #236
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#236
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 @david-rahrer on GitHub (Jun 24, 2016).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/438
I'm attempting to build 1.80 on Ubuntu 14.04 and get this error on configure:
I've verified that those package versions are above that but it is a syntax error anyway. And min_fuse_version is defined on line # 4140.
I've tried replacing the variable directly with 2.8.4 but get the same error. Have I missed something?
@david-rahrer commented on GitHub (Jun 24, 2016):
I'm going to close this as I started all over and cloned the git instead of using the release and also reinstalled all the necessary packages and it worked fine after. I don't know what it was, but it likely isn't an issue. Thanks.
@hierony94 commented on GitHub (Jun 29, 2016):
What is the necessary packages @david-rahrer?
Because I got this error when trying to build it with different Dockerfile.
Here's the case. I have 2 Dockerfile.
(Dockerfile 1 can build image and provision S3FS, and Dockerfile 2 otherwise)
Thanks.
@gsaslis commented on GitHub (Dec 3, 2016):
fwiw, i'm also having this issue...
@AstroTom commented on GitHub (Nov 2, 2017):
Also having the issue in Ubuntu 14.04.
The following fixed it:
sudo apt-get install build-essential libcurl4-openssl-dev libxml2-dev pkg-config libssl-dev libfuse-dev ./autogen.sh ...@ghost commented on GitHub (Nov 7, 2018):
Reinstalling the dependencies helped resolve my issues as well on Lubuntu 16.04. Out of the box the './configure' wouldn't run kept failing at the same line
...
PKG_CHECK_MODULES(common_lib_checking
...
This is what I ran on my system to clear all the related packages I could find:
apt-get purge build-essential libcurl4-openssl-dev libxml2-dev pkg-config libssl-dev libfuse-dev m4 automake autotools-dev s3fsapt-get install build-essential libcurl4-openssl-dev libxml2-dev pkg-config libssl-dev libfuse-dev m4 automake autotools-dev s3fs@johnh530 commented on GitHub (Nov 8, 2022):
For Ubuntu 20.04 doing:
sudo apt-get install build-essential libcurl4-openssl-dev libxml2-dev pkg-config libssl-dev libfuse-dev ./autogen.shfixed it as well
johnh...