[osg-users] Please test svn/trunk in prep for OpenSceneGraph-2.7.8 dev release

2008-12-19 Thread Robert Osfield
Hi All, I have now completed all my work in prep for the 2.7.8 and am personally ready to tag 2.7.8, but is the code ready... we I know it works fine for my under Kubunutu 8.10, but need some feedback from testing on other plartforms to know if things are working elsewhere. Since 2.7.7 I've made

Re: [osg-users] Please test svn/trunk in prep for OpenSceneGraph-2.7.8 dev release

2008-12-19 Thread Vincent Bourdier
Hi Robert, Compilation ok : 0 error, 0 warnings on OSG only (no examples, no wrappers, ...) Under : VS 2005 SP1, Windows XP SP2 Regards, Vincent. 2008/12/19 Robert Osfield robert.osfi...@gmail.com Hi All, I have now completed all my work in prep for the 2.7.8 and am personally ready to

Re: [osg-users] Please test svn/trunk in prep for OpenSceneGraph-2.7.8 dev release

2008-12-19 Thread Gerrick Bivins
Hi Robert, Mac OSX 10.5.6, cmake (makefiles) build I ran into this error when compiling plugins: [ 68%] Building CXX object src/osgPlugins/Inventor/CMakeFiles/osgdb_iv.dir/ConvertToInventor.cpp.o /Users/gbivins/work/APIs/OpenSceneGraph/src/osgPlugins/Inventor/ConvertToInv entor.cpp: In function

Re: [osg-users] Please test svn/trunk in prep for OpenSceneGraph-2.7.8 dev release

2008-12-19 Thread Robert Osfield
HI Gerrick, Are you compiling th with debug build? I've been compiling this plugin and fixing warnings in it, but didn't test the debug build. I'll go and try a debug build. Robert. On Fri, Dec 19, 2008 at 4:24 PM, Gerrick Bivins gbiv...@objectreservoir.com wrote: Hi Robert, Mac OSX 10.5.6,

Re: [osg-users] Please test svn/trunk in prep for OpenSceneGraph-2.7.8 dev release

2008-12-19 Thread Robert Osfield
Hi Gerrick, A debug build at my end reproduces the problem. I've simply removed the assert. This change is now checked in svn/trunk. Robert. On Fri, Dec 19, 2008 at 4:24 PM, Gerrick Bivins gbiv...@objectreservoir.com wrote: Hi Robert, Mac OSX 10.5.6, cmake (makefiles) build I ran into

Re: [osg-users] Please test svn/trunk in prep for OpenSceneGraph-2.7.8 dev release

2008-12-19 Thread Gerrick Bivins
Good question. It depends on what the default build is from Cmake settings. I haven't manually changed the complier options so I assumed it was opt (make install) but I'll need to check that. Gerrick On 12/19/08 10:27 AM, Robert Osfield robert.osfi...@gmail.com wrote: HI Gerrick, Are you

Re: [osg-users] Please test svn/trunk in prep for OpenSceneGraph-2.7.8 dev release

2008-12-19 Thread Jean-Sébastien Guay
Hi Robert, I have now completed all my work in prep for the 2.7.8 and am personally ready to tag 2.7.8, but is the code ready... we I know it works fine for my under Kubunutu 8.10, but need some feedback from testing on other plartforms to know if things are working elsewhere. Seems like your

Re: [osg-users] Please test svn/trunk in prep for OpenSceneGraph-2.7.8 dev release

2008-12-19 Thread Gerrick Bivins
Hi Robert, Success! I built plugins and examples as well. Gerrick On 12/19/08 10:45 AM, Jean-Sébastien Guay jean-sebastien.g...@cm-labs.com wrote: Hi Robert, I have now completed all my work in prep for the 2.7.8 and am personally ready to tag 2.7.8, but is the code ready... we I know it

Re: [osg-users] Please test svn/trunk in prep for OpenSceneGraph-2.7.8 dev release

2008-12-19 Thread Robert Osfield
Hi J-S, On Fri, Dec 19, 2008 at 4:45 PM, Jean-Sébastien Guay jean-sebastien.g...@cm-labs.com wrote: The offending line is this: if (ret != Z_OK) return ret; changing that to return false; would fix it, as is done further down in the function when there's an error. Now fixed this