POV-Ray : Newsgroups : povray.beta-test : TIME_UTC is not used anymore by boost lib. version >=3D 1_50_0 : TIME_UTC is not used anymore by boost lib. version >=3D 1_50_0 Server Time
16 May 2024 00:57:30 EDT (-0400)
  TIME_UTC is not used anymore by boost lib. version >=3D 1_50_0  
From: Wonhong Kwon
Date: 21 Nov 2012 04:05:01
Message: <web.50ac98ade50507bd9f2f1dc60@news.povray.org>
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

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.