[Flightgear-devel] Build Error of /src/Main/main.cxx under MSVC 6.0

2002-10-16 Thread Jonathan Polley
I had to remove the following block of code from main.cxx in order to get FlightGear to build under MSVC: #if ( WIN32 ) PFNGLPOINTPARAMETERFEXTPROC glPointParameterfEXT = 0; PFNGLPOINTPARAMETERFVEXTPROC glPointParameterfvEXT = 0; #endif I changed the '#if (WIN32)' to be '#if 0' instead.

Re: [Flightgear-devel] Build Error of /src/Main/main.cxx under MSVC 6.0

2002-10-16 Thread Curtis L. Olson
Jonathan, I just made one change to CVS that may help (based on docs only, I don't have access to MSVC) Regards, Curt. Jonathan Polley writes: I had to remove the following block of code from main.cxx in order to get FlightGear to build under MSVC: #if ( WIN32 )

Re: [Flightgear-devel] Build Error of /src/Main/main.cxx under MSVC 6.0

2002-10-16 Thread Jonathan Polley
Curt, It compiles, links, and runs. Thanks for the fix. Jonathan Polley On Wednesday, Oct 16, 2002, at 11:37PM, Curtis L. Olson [EMAIL PROTECTED] wrote: Jonathan, I just made one change to CVS that may help (based on docs only, I don't have access to MSVC) Regards, Curt. Jonathan