Hi Robert,
 
    osgviewer.cpp(3.3.2) compile error with vs2003-vs2008 :
   .\osgviewer.cpp(41) : fatal error C1083: Cannot open include file: 
'stdint.h': No such file or directory
  
   Visual Studio 2003 - 2008 (Visual C++ 7.1 - 9) don't claim to be C99 
compatible.
 
   code:
   #include <stdint.h>
 
   Just define them.
 
   #ifdef _MSC_VER
   typedef __int32 int32_t;
   typedef unsigned __int32 uint32_t;
   typedef __int64 int64_t;
   typedef unsigned __int64 uint64_t;
   #else
   #include <stdint.h>
   #endif
 
cheers,
 
FlySky
 
_______________________________________________
osg-submissions mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-submissions-openscenegraph.org

Reply via email to