configure: error: Boost Regex 1.76 or higher not found.

Need help with FileZilla Client? Something does not work as expected? In this forum you may find an answer.

Moderator: Project members

Locked
Message
Author
Hmligato
504 Command not implemented
Posts: 6
Joined: 2024-05-06 09:05
First name: aaaaa
Last name: bbbbb

configure: error: Boost Regex 1.76 or higher not found.

#1 Post by Hmligato » 2024-05-06 09:09

Hi!

I'm trying to compile filezilla but came accross this error message: configure: error: Boost Regex 1.76 or higher not found. :(

I've tried to add the following flags to indicate the headers folder but without any success:
- LDFLAGS="-L/opt/boost/lib" OR CLFAGS "-I/home/boost_v1.85/boost"

Could someone help me by describing precisely what is needed and where it should be?

(P.S PLEASE: No answer like "you need to include headers", I've understand that the headers of boost are missing. Unfortunately the two others post on this forum covering this topic are just answering the question by "the headers are missing/include the headers". I'd like to have comprehensive/complete answer saying: You need those file, at this place, using this command, specifying the path using this command. So nobody else would have to ask this question again)


Kind Regards

User avatar
botg
Site Admin
Posts: 35609
Joined: 2004-02-23 20:49
First name: Tim
Last name: Kosse

Re: configure: error: Boost Regex 1.76 or higher not found.

#2 Post by botg » 2024-05-06 17:02

CLFAGS "-I/home/boost_v1.85/boost"
The -I argument is for the preprocessor, so it should go into CPPFLAGS. Also, unless there is a another boost sub-directory within that location, remove the trailing /boost.

Hmligato
504 Command not implemented
Posts: 6
Joined: 2024-05-06 09:05
First name: aaaaa
Last name: bbbbb

Re: configure: error: Boost Regex 1.76 or higher not found.

#3 Post by Hmligato » 2024-05-06 20:42

Hi, thanks for your answer.
CPPFLAGS="-g -O0 -I/home/boost_v18" ./configure doesn't work: configure: error: in `/filezilla-3.67.0': configure: error: Boost Regex 1.76 or higher not found.
Coping the boost folder inside the filezilla folder doesn't work neither.

Cheers.

Hmligato
504 Command not implemented
Posts: 6
Joined: 2024-05-06 09:05
First name: aaaaa
Last name: bbbbb

Re: configure: error: Boost Regex 1.76 or higher not found.

#4 Post by Hmligato » 2024-05-06 20:55

Dears,

After some struggles here is the complete compiling workflow I followed to successfully build FileZilla on linux:

- Download dependencies: sudo apt-get install libfilezilla-dev libwxbase3.0-dev gnutls-dev libdbus-1-dev
- Download boost library: https://www.boost.org/
- Download and install libFileZilla library:https://lib.filezilla-project.org/download.php
- cd into Filezilla folder
- create and cd in a compile folder
- CPPFLAGS="-I/absolute/path/to/boost/folder" ../configure
- make
- make install

(P.S: Relative path doesn't work for boost folder, don't use ~/)

We can close this topic now
Thanks for your help botg.

User avatar
boco
Contributor
Posts: 26967
Joined: 2006-05-01 03:28
Location: Germany

Re: configure: error: Boost Regex 1.76 or higher not found.

#5 Post by boco » 2024-05-07 00:34

[Closed on request of OP]
No support requests over PM! You will NOT get any reply!!!
FTP connection problems? Please read Network Configuration.
FileZilla connection test: https://filezilla-project.org/conntest.php
FileZilla Pro support: https://customerforum.fileZilla-project.org

Locked