POV-Ray : Newsgroups : povray.beta-test : TIME_UTC is not used anymore by boost lib. version >=3D 1_50_0 Server Time
29 Apr 2024 16:26:21 EDT (-0400)
  TIME_UTC is not used anymore by boost lib. version >=3D 1_50_0 (Message 1 to 2 of 2)  
From: Wonhong Kwon
Subject: TIME_UTC is not used anymore by boost lib. version >=3D 1_50_0
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

From: clipka
Subject: Re: TIME_UTC is not used anymore by boost lib. version >=3D 1_50_0
Date: 21 Nov 2012 04:56:00
Message: <50aca530@news.povray.org>
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

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