|
|
When I tried to build povray 3.7.0 RC6, there were few files using TIME_UTC
defined by boost lib. Since TIME_UTC has been changed to TIME_UTC_ from boost
lib. 1_50_0, those lines should be fixed like below.
-before-
boost::xtime_get (&t, boost::TIME_UTC)
-after-
#if BOOST_VERSION >= 105000
boost::xtime_get (&t, boost::TIME_UTC_)
#else
boost::xtime_get (&t, boost::TIME_UTC)
#endif
Regards,
Wonhong
Post a reply to this message
|
|
|
|
Am 21.11.2012 10:02, schrieb Wonhong Kwon:
> When I tried to build povray 3.7.0 RC6, there were few files using TIME_UTC
> defined by boost lib. Since TIME_UTC has been changed to TIME_UTC_ from boost
> lib. 1_50_0, those lines should be fixed like below.
>
> -before-
> boost::xtime_get (&t, boost::TIME_UTC)
>
> -after-
> #if BOOST_VERSION >= 105000
> boost::xtime_get (&t, boost::TIME_UTC_)
> #else
> boost::xtime_get (&t, boost::TIME_UTC)
> #endif
This, too, is also known, and a fix on its way.
Post a reply to this message
|
|