Page 1 of 1

FileZilla 3.65.0: configure: error: Boost Regex 1.76 or higher not found

Posted: 2023-08-11 01:46
by fzuzer
The version of Boost libraries in Ubuntu 22.04 is 1.74. But I've installed v.1.82 using Linuxbrew.

Code: Select all

$ sudo ldconfig -p | grep regex
        libboost_regex.so.1.82.0 (libc6,x86-64) => /home/linuxbrew/.linuxbrew/lib/libboost_regex.so.1.82.0
        libboost_regex.so.1.74.0 (libc6,x86-64) => /lib/x86_64-linux-gnu/libboost_regex.so.1.74.0
        libboost_regex.so (libc6,x86-64) => /home/linuxbrew/.linuxbrew/lib/libboost_regex.so
        libboost_regex-mt.so.1.82.0 (libc6,x86-64) => /home/linuxbrew/.linuxbrew/lib/libboost_regex-mt.so.1.82.0
        libboost_regex-mt.so (libc6,x86-64) => /home/linuxbrew/.linuxbrew/lib/libboost_regex-mt.so
I've set

Code: Select all

LD_LIBRAY_PATH=/home/linuxbrew/.linuxbrew/lib
How can I get configure to use the newer version of libboost_regex.so?

Re: FileZilla 3.65.0: configure: error: Boost Regex 1.76 or higher not found

Posted: 2023-08-11 06:47
by botg
Don't forget the header files.

Re: FileZilla 3.65.0: configure: error: Boost Regex 1.76 or higher not found

Posted: 2023-08-11 09:37
by fzuzer
botg wrote:
2023-08-11 06:47
Don't forget the header files.
Yep, needed to set CPATH to the include directory containing the header files.