
On Tue, 6 Mar 2007, Areozol wrote:
On 2007-03-06, at 17:30, jiho wrote:
just some precisions. this errors occurs with the tarball for 0.45, it's not tested with latest svn (the objective is to build a 0.45 package for panther). so if someone has committed a fix for this to trunk, it would be great to merge it in the 0.45 branch too. areozol: we'll try to keep gcc3.3 because you need to build inkscape with the same gcc version that you used to build its dependencies. if you install gcc 4.3, you will need to recompile all depencies with gcc 3.3.
So all, what i need to do, is to just wait for the fix?
I think that with gcc 3.3 on Mac you had to use: #define isNaN(_a) (__isnan(_a)) #define isFinite(_a) (__isfinite(_a)) This is judging by the state of isnan.h before I started committing Tiger changes to it.
Could you please see if it compiles with: #define isFinite(_a) (__isfinite(_a))
If it does I will add the following case to src/isnan.h for SVN and for the release branch: #if defined(__APPLE__) && __GNUC__ == 3 # define isFinite(_a) (__isfinite(_a)) // MacOSX definition gcc 3.x
Cheers, Michael