Page 1 of 1

Compilation problem (resolved) FC8 gcc 4.3.0 x86_64

Posted: Mon Mar 17, 2008 10:19 am
by ichernev
Hi,

I couldn't initialy 'make' deluge 0.5.8.6 because of the following error:

Code: Select all

/usr/include/boost/date_time/date_facet.hpp:560: error: declaration of ‘void boost::date_time::date_input_facet<date_type, CharT, InItrT>::special_values_parser(boost::date_time::special_values_parser<date_type, charT>)’
/usr/include/boost/date_time/special_values_parser.hpp:34: error: changes meaning of ‘special_values_parser’ from ‘class boost::date_time::special_values_parser<date_type, charT>’
I have boost / boost-devel packages versions 1.34.1-7 (latest). To fix this bug just add
typedef boost::date_time::special_values_parser<date_type,CharT> special_values_parser_type;
to line 432 of /usr/include/boost/date_time/date_facet.hpp.
After that it compiles / installs / runs perfectly :)