Michal Krol wrote:
> On 14/09/06, Brian Paul <[EMAIL PROTECTED]> wrote:
> 
>>I've uploaded the 3rd release candidate to http://www.mesa3d.org/beta/
>>
>>Planning to release 6.5.1. tomorrow unless something pops up.
>>
> 
> 
> It's Windows and VC6 again.
> 
> 
> --------------------Configuration: mesa - Win32 Debug x86--------------------
> Compiling...
> ac_context.c
> ../../../../include\GL/glext.h(3190) : fatal error C1083: Cannot open
> include file: 'inttypes.h': No such file or directory
> ac_import.c
> ../../../../include\GL/glext.h(3190) : fatal error C1083: Cannot open
> include file: 'inttypes.h': No such file or directory
> 

In glext.h, if you change this:

#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L

to this:

#if defined(WIN32)
#include <stdint.h>
#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L

does that work?

Otherwise, can you find a working #ifdef test for Windows?

-Brian

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Mesa3d-dev mailing list
Mesa3d-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mesa3d-dev

Reply via email to