Hi Manu, On Wed, Jun 10, 2009 at 9:10 AM, Emmanuel Roche<[email protected]> wrote: > Hi Robert, > > the CURLOPT_CONNECTTIMEOUT was added on 03/15/2001 according the libcurl > logs, so this would be version 7.7 > > Do you think we need to check the version any way ?
I recently had to add a few version checks of the form: #if LIBCURL_VERSION_NUM >= 0x070a07 To help things compile on older Linux distro's that out of date libcurl versions. The above check is for 7.10.7. Checking for 7.7.0 might well not be required as I suspect that the problem libcurl versions are newer than this. I will need to check the osg-users mailing list threads to double check though. Robert. _______________________________________________ osg-submissions mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-submissions-openscenegraph.org
