| 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: |
_______________________________________________ osg-users mailing list [email protected] http://openscenegraph.net/mailman/listinfo/osg-users http://www.openscenegraph.org/
