Boost System issue.
Hello.
I have a problem.
The problem: configure script tries to find boost_system, because you wrote that you need boost_filesystem. But boost-m4 thinks it's not a header-only library. But it is from boost 1.70.0 .
I found that you actually don't use boost_filesystem. Like really, you don't use it: you have one include of it and then basically smth like namespace fs = boost::filesystem and in any place you don't have fs::whatever . That's double strange.
But how I got to this? I've installed Boost via CMake.
So, I see next solutions:
a. Remove requirement for boost_filesystem.
b. Upgrade CMakeLists.txt scripts and move the project entirely to CMake.
c. Move to Meson.
I can help with the second but I cannot help with first one since I don't understand autotools. I've tried, but I don't understand.
I'll probably help with the second one.
Do you have an opinion about that?