This is because the configure script never looks for the libboost_date_time library. It works in an optimized build because everything is inlined from the header file, but in a non-optimized build the library is needed.
This patch (against Git master), along with adding ax_boost_date_time.m4 to the unix/config/ directory, addresses the issue and allows a non-optimized build to complete.
I am building POV-Ray Git master from source on Linux.
It builds correctly in an
-O3
optimized build. However, when optimization is disabled, I get this error:This is because the configure script never looks for the
libboost_date_time
library. It works in an optimized build because everything is inlined from the header file, but in a non-optimized build the library is needed.This patch (against Git master), along with adding
ax_boost_date_time.m4
to theunix/config/
directory, addresses the issue and allows a non-optimized build to complete.