Hi,
I only have PPC macs, all running 10.4 so I can't comment on x86 macs and/or older versions of the os. But on my computers I have to edit the lines:
#if !defined (APPLE_PRE_10_2)
inline bool isNaN(float v) { return __isnan(v); }
inline bool isNaN(double v) { return __isnan(v); }
to
#if !defined (APPLE_PRE_10_2)
inline bool isNaN(float v) { return isnan(v); }
inline bool isNaN(double v) { return isnan(v); }
... for a correct compilation.
I'm afraid to suggest any changes though as I really have no experience with x86 macs, and I don't have any computers running < 10.4.
I hope this information is of some help,
Alan.
On 11 Sep 2006, at 15:01, Robert Osfield wrote:
On 9/11/06, Robert Osfield <[EMAIL PROTECTED]> wrote: This leaves the reported build problems under OSX with certain combinationes of gcc and the OS version. I couldn't see any final resolution to the thread that started on thelist but ended up off it, so I'll bring it back onto the list now, could OSX'rs test out and try to find some resolution to what #ifdef combination in include/osg/Math will do the trick.
Has anyone made an more progress towards resolving these problems? I'll wait another hour, then go ahead a make 1.-2-rc3.
Robert.
_______________________________________________
osg-users mailing list
_______________________________________________
osg-users mailing list