I can confirm that current SVN is broken for Linux/MinGW (gcc). There
are some errors not visible to MSC compiler I'm currently builting
with. I'd like to fix this early (maybe tonight).
If you are using Linux only then prepare for broken font support. The
most stable platform is currently Windows (this will be fixed as
well).
Best regards
Petr Kobalicek
I added new version to trunk. It has several problems, but the
compilation errors should be fixed for gcc, although I'm not sure
about MinGW.
Best regards
Petr Kobalicek
Thanks! Although intellisense gives me error 'ceil is undefined', code
compiles in VS2010. I added ceil/floor methods to the Fog::Math and
replaced all calls to use Fog::Math namespace.
Now it should compile under VS2008;)
Best regards
Petr Kobalicek
2011/9/21 Jacques Leroy <blake...@hotmail.com>:
> Hi Petr !
>
> I still have the following compilation error: (Visual Studio 2008)
>
> 1>..\Fog\Core\Threading\ThreadEvent.cpp(77) : error C3861: 'ceil':
> identifier not found
>
> I think it would be solved with something like...
>
> #include <Fog/Core/Math/Math.h> in ThreadEvent.cpp
>
> and a new line
>
> static FOG_INLINE double ceil(double x) { return ::ceil(x); }
>
> in Fog/Core/Math/Math.h
>
> (others will probably needed too in a later stage of development, like
> floor() ... )
>
> Fog-ly yours,
> Jacques Leroy
>
>
>> Date: Sun, 18 Sep 2011 14:10:32 +0200
>> Subject: Re: [fog-dev] Compilation errors
>> From: kobalic...@gmail.com
>> To: fog...@googlegroups.com
>>
>> Hi,
>>
>> I added new version to trunk. It has several problems, but the
>> compilation errors should be fixed for gcc, although I'm not sure
>> about MinGW.
>>
>> Best regards
>> Petr Kobalicek
>>
>> On Sat, Sep 17, 2011 at 10:08 PM, Petr Kobalíček